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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

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

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.hero-content p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    background-color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary.large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.2s;
}

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

.value-split {
    display: flex;
    min-height: 500px;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.split-content.dark {
    background-color: var(--text-dark);
    color: white;
}

.split-content.dark h2 {
    color: white;
}

.split-content.dark p {
    color: #d1d5db;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 8px;
}

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

.services-preview {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.service-cta:hover {
    text-decoration: underline;
}

.testimonial-split {
    display: flex;
    min-height: 550px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
}

.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 340px;
    text-align: center;
}

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

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.guarantee-split {
    display: flex;
    min-height: 500px;
}

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

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
    color: var(--text-medium);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.booking-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.booking-intro p {
    font-size: 18px;
    color: var(--text-medium);
}

.booking-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
}

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

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

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

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

.booking-form button[type="submit"] {
    width: 100%;
    margin-top: 8px;
}

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

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie:hover {
    background-color: var(--primary-dark);
}

.btn-cookie.secondary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 100px 0 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    padding: 80px 0;
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 260px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 500px;
}

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

.commitment-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.commitment-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 48px;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-detail ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail li {
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 16px;
}

.pricing-info {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-info h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    gap: 48px;
}

.pricing-item {
    flex: 1;
    text-align: center;
}

.pricing-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pricing-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.service-cta {
    padding: 80px 0;
    background-color: var(--text-dark);
    color: white;
    text-align: center;
}

.service-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 48px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.response-time {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.response-time h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.response-time p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-areas {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.service-areas h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
}

.service-areas > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 60px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.area-item {
    flex: 1;
    min-width: 260px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
}

.area-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.area-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.legal-page .updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 48px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: var(--text-medium);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-reminder {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-reminder h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-reminder p {
    font-size: 18px;
    color: var(--text-medium);
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .testimonial-split,
    .guarantee-split,
    .about-split,
    .team-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content {
        padding: 60px 40px;
    }

    .hero-right,
    .split-image {
        min-height: 400px;
    }

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

    .split-content h2,
    .section-header h2,
    .process-section h2,
    .values-section h2,
    .commitment-section h2,
    .cta-section h2,
    .pricing-info h2,
    .service-cta h2,
    .service-areas h2,
    .faq-section h2,
    .final-cta h2 {
        font-size: 32px;
    }

    .service-detail h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .process-steps,
    .pricing-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        gap: 16px;
    }

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

    .hamburger {
        display: flex;
    }

    .services-grid,
    .values-grid,
    .areas-grid {
        flex-direction: column;
    }

    .booking-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-left,
    .split-content {
        padding: 40px 24px;
    }

    .btn-primary.large {
        padding: 14px 32px;
        font-size: 16px;
    }
}