* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: #c0392b;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    background: var(--light-bg);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    padding: 60px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.cta-inline:hover {
    color: #c0392b;
}

.services-grid {
    background: var(--white);
    padding: 80px 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 20px;
    color: #666;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-icon img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
}

.service-price {
    padding: 0 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background: #2980b9;
}

.why-us-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: #666;
}

.testimonials {
    background: var(--light-bg);
    padding: 80px 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.form-section-split {
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    gap: 60px;
    padding: 0 40px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-intro img {
    width: 100%;
    border-radius: 8px;
}

.form-container {
    flex: 1;
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #c0392b;
}

.cta-final {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-large {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.main-footer {
    background: #1a252f;
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(231, 76, 60, 0.4);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.about-split,
.team-split,
.service-detail-split,
.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}

.about-split.reverse,
.team-split.reverse,
.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.values-section {
    background: var(--light-bg);
    padding: 80px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

.timeline-section {
    padding: 80px 40px;
}

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

.cta-section {
    background: var(--light-bg);
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #666;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.location-section {
    background: var(--light-bg);
    padding: 80px 40px;
}

.location-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.faq-section {
    padding: 80px 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.thanks-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 80px 40px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
}

.service-confirmation {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    padding: 80px 40px;
}

.next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-item p {
    color: #666;
    line-height: 1.8;
}

.while-waiting {
    background: var(--light-bg);
    padding: 80px 40px;
}

.while-waiting h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.waiting-options {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.option-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.option-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.option-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.urgent-contact {
    padding: 80px 40px;
    text-align: center;
}

.urgent-contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.urgent-contact p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.email-link {
    font-size: 24px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 40px;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-split,
    .why-us-split,
    .form-section-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .service-card,
    .testimonial-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}