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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #ecf0f1;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 17px;
}

.ad-notice {
    background-color: var(--warning-color);
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.minimal-nav .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

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

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 35px;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.5;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.story-intro p,
.story-section p,
.content-flow p,
.legal-content p {
    margin-bottom: 24px;
    color: var(--text-color);
}

.inline-image-block {
    margin: 50px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: var(--light-bg);
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
}

.citation {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

.insight-section,
.problem-amplification,
.solution-reveal,
.approach-section {
    margin: 60px 0;
}

.insight-section h2,
.problem-amplification h2,
.solution-reveal h2,
.approach-section h2,
.services-reveal h2,
.trust-elements h3,
.credentials h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.two-column-text {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.two-column-text .column {
    flex: 1;
}

.two-column-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.offset-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin: 40px 0;
}

.content-block {
    flex: 1.5;
}

.image-accent {
    flex: 1;
    background-color: var(--light-bg);
}

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

.benefit-list {
    list-style: none;
    margin: 25px 0;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-inline {
    margin: 70px 0;
    padding: 40px 50px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: var(--secondary-color);
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-inline {
    margin: 60px 0;
}

.cta-card,
.cta-box {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 45px 50px;
    text-align: center;
}

.cta-card h3,
.cta-box h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.cta-card p,
.cta-box p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #ecf0f1;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-reveal {
    margin: 70px 0;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    padding: 35px 40px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border-color: var(--accent-color);
    background-color: #fff8f7;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3,
.service-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price-tag,
.price-display {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 20px 0;
    letter-spacing: -0.5px;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-select-service.selected {
    background-color: var(--success-color);
}

.form-section {
    margin: 70px 0;
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

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

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 35px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px 20px;
    color: #856404;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-notice.active {
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.trust-elements {
    margin: 70px 0;
}

.trust-elements img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    background-color: var(--light-bg);
    object-fit: cover;
}

.credentials {
    margin-top: 30px;
}

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px 40px;
    background-color: #fffbf0;
    border-left: 4px solid var(--warning-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--secondary-color);
}

.main-footer {
    background-color: var(--primary-color);
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.references-list li a {
    color: #ecf0f1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.references-list li a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.approach-item {
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.approach-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.values-section {
    margin: 50px 0;
}

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

.value-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.cta-section {
    margin: 60px 0;
}

.services-intro {
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.email-display {
    font-weight: 600;
    color: var(--accent-color);
}

.contact-note {
    padding: 20px;
    background-color: var(--light-bg);
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.access-info,
.facility-info {
    margin-top: 30px;
}

.access-info h3,
.facility-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.access-info ul {
    list-style: none;
    padding-left: 0;
}

.access-info ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 15px;
}

.access-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.additional-info {
    margin: 60px 0;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.additional-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.thanks-message h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-info {
    background-color: var(--light-bg);
    padding: 20px 30px;
    border-left: 4px solid var(--success-color);
}

.selected-service-info p {
    font-size: 17px;
    margin-bottom: 0;
    color: var(--text-color);
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.steps-list li strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.steps-list li p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.additional-resources {
    text-align: left;
    margin: 50px 0;
}

.additional-resources h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.additional-resources > p {
    margin-bottom: 20px;
}

.resource-links {
    list-style: none;
    padding-left: 0;
}

.resource-links li {
    margin-bottom: 12px;
}

.resource-links li a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.resource-links li a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px 60px;
    }

    .hero-editorial h1,
    .page-header h1,
    .thanks-message h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 19px;
    }

    .two-column-text {
        flex-direction: column;
        gap: 30px;
    }

    .offset-content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-inline {
        padding: 30px 25px;
    }

    .cta-card,
    .cta-box {
        padding: 35px 25px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .btn-cookie {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .steps-list li {
        padding-left: 50px;
    }

    .steps-list li:before {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}