* {
    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.7;
    color: #2d3748;
    background-color: #ffffff;
}

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
}

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    margin: 0 1rem;
}

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

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

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

.editorial-flow {
    background-color: #f7fafc;
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text-overlay .lead-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.6;
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.content-narrow section {
    margin-bottom: 3rem;
}

.content-narrow h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a202c;
}

.content-narrow h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2d3748;
}

.content-narrow p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.inline-image {
    margin: 3rem 0;
    background-color: #edf2f7;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 1rem;
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
    text-align: center;
}

.insight-card {
    background-color: #edf2f7;
    border-left: 4px solid #4299e1;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

.cta-inline {
    margin: 2rem 0;
    text-align: center;
}

.btn-text-link {
    color: #4299e1;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-text-link:hover {
    color: #2b6cb0;
}

.service-card-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    border: 1px solid #e2e8f0;
    padding: 2rem;
    background-color: #ffffff;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #1a202c;
}

.service-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.btn-select-service {
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2b6cb0;
}

.contact-form {
    background-color: #f7fafc;
    padding: 2rem;
    margin-top: 2rem;
}

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

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

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

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

.btn-submit {
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #38a169;
}

.testimonial {
    background-color: #f7fafc;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #4299e1;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
}

.disclaimer-section {
    background-color: #fffaf0;
    border: 1px solid #fbd38d;
    padding: 1.5rem;
    margin-top: 3rem;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.page-header {
    margin-bottom: 3rem;
}

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

.lead-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.125rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

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

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.service-duration {
    color: #718096;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-price-display {
    color: #2b6cb0;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-detail-item ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-item li {
    margin-bottom: 0.5rem;
}

.cta-section {
    background-color: #edf2f7;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2b6cb0;
}

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

.thanks-container {
    padding: 3rem 0;
}

.thanks-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-info {
    background-color: #edf2f7;
    padding: 1.5rem;
    margin: 2rem 0;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.preparation-tips,
.thanks-resources {
    text-align: left;
    margin: 3rem 0;
}

.preparation-tips ul,
.thanks-resources ul {
    margin-left: 1.5rem;
}

.preparation-tips li,
.thanks-resources li {
    margin-bottom: 0.75rem;
}

.thanks-cta {
    background-color: #f7fafc;
    padding: 2rem;
    margin: 3rem 0;
}

.contact-email {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2b6cb0;
}

.thanks-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-page {
    line-height: 1.8;
}

.last-update {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    margin-top: 2.5rem;
}

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

.legal-page li {
    margin-bottom: 0.5rem;
}

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

    .ad-label {
        margin: 0;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .hero-text-overlay h1 {
        font-size: 1.75rem;
    }

    .hero-text-overlay .lead-text {
        font-size: 1rem;
    }

    .content-narrow {
        padding: 2rem 1rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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