* {
    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;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafc;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    padding-right: 3rem;
}

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

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

.hero-image {
    flex: 1;
    background-color: #cbd5e0;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2c5282;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a365d;
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #e2e8f0;
    color: #2c5282;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

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

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

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

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

.intro-section p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.split-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
}

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

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    background-color: #e2e8f0;
    position: relative;
    min-height: 400px;
}

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

.services-preview {
    background-color: #f8fafc;
}

.services-continued {
    background-color: #ffffff;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.services-continued .service-card {
    background-color: #f8fafc;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
    margin: 1rem 0;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a365d;
}

.additional-services {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

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

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

.service-card-compact {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.service-card-compact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.service-card-compact p {
    color: #4a5568;
    margin-bottom: 1rem;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a365d;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.form-group textarea {
    resize: vertical;
}

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

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

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

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

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

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

.testimonial cite {
    color: #718096;
    font-style: normal;
    font-size: 0.9375rem;
}

.main-footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 0.9375rem;
}

.footer-section a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    border-left: 3px solid #4299e1;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #cbd5e0;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5282;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #ffffff;
    color: #2c5282;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    background-color: #f8fafc;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #4a5568;
}

.about-content,
.philosophy-section,
.approach-section,
.values-section {
    padding: 5rem 2rem;
}

.about-content {
    background-color: #ffffff;
}

.philosophy-section {
    background-color: #f8fafc;
}

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

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #2c5282;
}

.philosophy-item h3 {
    font-size: 1.375rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

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

.approach-section {
    background-color: #ffffff;
}

.values-section {
    background-color: #f8fafc;
}

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

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

.services-full {
    background-color: #ffffff;
}

.service-detail {
    border-bottom: 1px solid #e2e8f0;
}

.service-detail.alt {
    background-color: #f8fafc;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    margin: 1.5rem 0;
}

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

.contact-info {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

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

.location-section {
    padding: 5rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

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

.location-section p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 1.25rem;
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.25rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

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

.thanks-details {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2c5282;
}

.thanks-details h2 {
    font-size: 1.75rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.thanks-details ol {
    margin-left: 1.5rem;
    color: #4a5568;
}

.thanks-details li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.thanks-info {
    margin: 2rem 0;
}

.thanks-info p {
    color: #4a5568;
    font-size: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

.legal-content h2 {
    font-size: 1.875rem;
    color: #1a365d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.375rem;
    color: #2c5282;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content strong {
    color: #2c5282;
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .hero-content {
        padding: 3rem 2rem;
        margin-left: 0;
        max-width: 100%;
    }

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

    .hero-image {
        min-height: 300px;
    }

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

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

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

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

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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