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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-text-overlay p {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-intro {
    padding: 80px 0 60px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 25px;
}

.inline-image-section {
    width: 100%;
    margin: 60px 0;
    background-color: #ecf0f1;
}

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

.problem-section,
.approach-reveal,
.benefits-storytelling,
.final-trust,
.mission-section,
.approach-detail,
.values-section {
    padding: 60px 0;
}

.problem-section h2,
.approach-reveal h2,
.benefits-storytelling h2,
.mission-section h2,
.approach-detail h2,
.values-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.problem-section h3,
.approach-reveal h3,
.values-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.problem-section p,
.approach-reveal p,
.benefits-storytelling p,
.mission-section p,
.approach-detail p,
.values-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.insight-box {
    background-color: #f8f9fa;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #007bff;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-box p {
    font-size: 17px;
    margin-bottom: 0;
}

.testimonial-inline {
    background-color: #ffffff;
    border-left: 5px solid #28a745;
    padding: 30px 40px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-size: 15px;
    color: #6c757d;
    margin-top: 10px;
}

.cta-section-primary,
.cta-section-secondary {
    padding: 70px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section-primary h2,
.cta-section-secondary h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section-primary p,
.cta-section-secondary p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #495057;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.services-preview {
    padding: 70px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #495057;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 20px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-section p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    color: #495057;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.page-header {
    text-align: center;
    padding: 80px 30px 60px;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header .subtitle {
    font-size: 20px;
    color: #6c757d;
}

.team-section,
.approach-detail {
    padding: 60px 0;
}

.team-section h2,
.approach-detail h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-section p,
.approach-detail p {
    font-size: 18px;
    margin-bottom: 25px;
}

.service-detail-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-detail-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 50px;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.service-meta span {
    background-color: #007bff;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.service-detail-card h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-card ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-detail-card li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #dee2e6;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
}

.price-unit {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
}

.contact-content {
    padding: 60px 0;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.contact-note,
.contact-directions {
    margin-bottom: 40px;
}

.contact-note p,
.contact-directions p {
    font-size: 17px;
    margin-bottom: 20px;
}

.contact-directions h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thanks-box {
    background-color: #ffffff;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 42px;
    color: #28a745;
    margin-bottom: 25px;
}

.thanks-info,
.thanks-note {
    text-align: left;
    margin-top: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-info ol {
    margin-left: 25px;
}

.thanks-info li {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-note {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 6px;
}

.thanks-note p {
    font-size: 16px;
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.next-steps-section {
    padding: 60px 0;
}

.next-steps-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.next-steps-section ul {
    margin-left: 25px;
    margin-top: 25px;
}

.next-steps-section li {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page .legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #007bff;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0056b3;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: #1a252f;
    padding: 30px 40px;
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding: 20px 30px;
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 30px;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #28a745;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5a6268;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-text-overlay p {
        font-size: 16px;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

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

    .service-price-box {
        flex-direction: column;
        gap: 20px;
    }

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

    .thanks-actions a {
        width: 100%;
    }
}