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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.nav-main {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e0e6ed;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #a0aec0;
    padding: 0.25rem 0.75rem;
    border: 1px solid #4a5568;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    background-color: #4299e1;
    color: #ffffff;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #3182ce;
}

.btn-cookie.btn-secondary {
    background-color: #718096;
}

.btn-cookie.btn-secondary:hover {
    background-color: #4a5568;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f7fafc;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-text-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5282;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1e3a5f;
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #cbd5e0;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.intro-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.intro-section p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.split-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.service-list {
    margin: 2rem 0;
}

.service-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.service-item p {
    margin-bottom: 0.75rem;
    color: #718096;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.process-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 0.75rem 1rem;
    background-color: #ebf8ff;
    border-left: 4px solid #4299e1;
    color: #2c5282;
    font-weight: 500;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.booking-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a202c;
}

.booking-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.main-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1e3a5f;
}

.image-content-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.image-content-wrapper img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.image-caption h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.image-caption p {
    font-size: 1.05rem;
    color: #4a5568;
}

.final-cta-section {
    padding: 5rem 2rem;
    background-color: #2c5282;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.final-cta-section .cta-primary {
    background-color: #ffffff;
    color: #2c5282;
}

.final-cta-section .cta-primary:hover {
    background-color: #f7fafc;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2d3748;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 0.9rem;
}

.page-header {
    padding: 5rem 2rem 3rem;
    background-color: #f7fafc;
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #4a5568;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.team-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.values-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.cta-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.services-detail-section {
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    min-height: 600px;
}

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

.service-detail-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.service-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 0.95rem;
    color: #718096;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-cta-section p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.contact-info-block {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #f7fafc;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #ebf8ff;
    border-left: 4px solid #4299e1;
}

.contact-note p {
    color: #2c5282;
}

.contact-image-block {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.location-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.location-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.contact-approach-section {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

.contact-approach-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.contact-approach-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 3rem 0;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.next-steps-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.next-steps-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.step-item {
    flex: 1;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.step-item p {
    color: #4a5568;
}

.legal-page {
    padding: 3rem 2rem 5rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-page a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e3a5f;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .contact-split-section {
        flex-direction: column;
    }

    .contact-info-block {
        padding: 3rem 2rem;
    }

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

    .steps-grid {
        flex-direction: column;
    }
}