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

:root {
    --primary-color: #1a1a2e;
    --accent-color: #e94560;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --gray: #6c757d;
    --dark-gray: #495057;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    background-color: var(--white);
}

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

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

a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    background-color: var(--light-bg);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

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

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--dark-gray);
}

.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.9), rgba(0,0,0,0));
    color: var(--white);
    padding: 60px 20px 40px;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    max-width: 900px;
    margin: 0 auto;
    font-size: 22px;
    opacity: 0.9;
}

.article-body {
    padding: 40px 20px;
}

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

.lead-paragraph {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 20px;
}

.article-body h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.inline-cta-box h3 {
    margin-top: 0;
    font-size: 26px;
    margin-bottom: 15px;
}

.inline-cta-box p {
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #d13751;
    opacity: 1;
}

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

.inline-image img {
    width: 100%;
    border-radius: 4px;
    background-color: var(--light-bg);
}

.inline-image figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
    text-align: center;
}

blockquote.testimonial-inline {
    margin: 45px 0;
    padding: 30px 40px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

blockquote.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

blockquote.testimonial-inline cite {
    font-size: 16px;
    color: var(--gray);
    font-style: normal;
}

.stat-block {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    padding: 40px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    line-height: 1.4;
}

.services-list-editorial {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 60px;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 300px;
    background-color: var(--light-bg);
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 25px 0;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-building-section {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.trust-building-section h2 {
    margin-top: 0;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.benefit-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.form-wrapper-editorial {
    margin: 60px 0;
    padding: 45px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.form-wrapper-editorial h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 30px;
}

.selected-service-display {
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

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

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.page-header {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: var(--light-bg);
}

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

.page-subtitle {
    font-size: 20px;
    color: var(--gray);
}

.services-detailed {
    margin-top: 50px;
}

.service-detail-card {
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h2 {
    margin-top: 0;
    font-size: 32px;
}

.service-duration {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 20px;
}

.service-benefits {
    margin: 20px 0;
    padding-left: 25px;
}

.service-benefits li {
    margin-bottom: 10px;
}

.service-price-large {
    font-size: 42px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 30px 0;
}

.highlighted-service {
    border: 2px solid var(--accent-color);
}

.services-info-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.process-steps {
    padding-left: 25px;
    margin-top: 20px;
}

.process-steps li {
    margin-bottom: 15px;
    font-size: 18px;
}

.cta-box-centered {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    margin: 60px 0;
}

.cta-box-centered h3 {
    margin-top: 0;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.cta-button:hover {
    background-color: #d13751;
    opacity: 1;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 18px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-button-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    opacity: 1;
}

.contact-info-box {
    margin: 50px 0;
}

.contact-item {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-detail {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-note {
    font-size: 15px;
    color: var(--gray);
    margin-top: 10px;
}

.contact-message-section {
    margin: 50px 0;
}

.contact-faq {
    margin: 50px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-confirmation-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.service-confirmation-box p {
    margin-bottom: 10px;
    font-size: 18px;
}

.next-steps-box {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.next-steps-box h2 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 20px;
}

.next-steps-list {
    padding-left: 25px;
}

.next-steps-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

.thanks-note {
    margin: 40px 0;
    font-size: 16px;
    color: var(--gray);
}

.email-display {
    color: var(--text-color);
    font-weight: bold;
}

.thanks-cta {
    margin-top: 50px;
}

.about-team-section {
    padding: 35px;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin: 40px 0;
}

.about-team-section h3 {
    margin-top: 0;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.legal-updated {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: bold;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

    .article-body h2 {
        font-size: 28px;
    }

    .stat-block {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .page-header h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }
}