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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba5;
    --accent-color: #e8924c;
    --text-dark: #2a2a2a;
    --text-light: #5a5a5a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-content {
    background-color: var(--bg-white);
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4d4d4;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    text-align: center;
    color: var(--bg-white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text-overlay .subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    opacity: 0.95;
}

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

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.editorial-content h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 50px 0 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.editorial-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 35px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.editorial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.insight-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.insight-box p {
    margin-bottom: 0;
}

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

.testimonial-inline blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.citation:hover {
    opacity: 0.7;
}

.services-reveal {
    background-color: var(--bg-light);
    padding: 70px 0;
    margin-top: 60px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #d4d4d4;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
}

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

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

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

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.select-service-btn,
.select-service-link {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover,
.select-service-link:hover {
    background-color: #d17a38;
    transform: translateY(-2px);
}

.form-section {
    background-color: var(--bg-white);
    padding: 70px 0;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.final-section {
    padding-bottom: 60px;
}

.disclaimer-box {
    background-color: #fff8e6;
    border: 1px solid #e8d99f;
    border-radius: 4px;
    padding: 25px;
    margin: 50px 0;
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #665c3b;
    margin-bottom: 0;
}

.main-footer {
    background-color: var(--text-dark);
    color: #c0c0c0;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    color: #c0c0c0;
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.reference-item {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.reference-item a {
    display: inline;
    color: var(--accent-color);
}

.reference-item a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.98);
    color: var(--bg-white);
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

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

.cookie-btn.reject {
    background-color: #666;
    color: var(--bg-white);
}

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

.page-content {
    min-height: 60vh;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.contact-info-section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    margin-bottom: 0;
    line-height: 1.8;
}

.email-text {
    color: var(--text-dark);
    font-weight: 500;
}

.info-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.info-note p {
    margin: 0;
}

.info-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-page {
    text-align: center;
    padding: 80px 30px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
}

.thanks-info p {
    margin: 0;
    font-size: 1.1rem;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-text-overlay .subtitle {
        font-size: 1.05rem;
    }

    .hero-image-container {
        height: 400px;
    }

    .content-narrow {
        padding: 30px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}