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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    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: 1.5rem;
    font-weight: bold;
    color: #c0392b;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.hero-text-narrow {
    text-align: center;
    margin-bottom: 40px;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.story-block h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a252f;
}

.story-block h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.story-block h4 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.story-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.inline-cta {
    background-color: #ecf0f1;
    padding: 30px;
    margin: 50px 0;
    border-left: 4px solid #c0392b;
}

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

.cta-link {
    display: inline-block;
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

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

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

.service-card {
    border: 1px solid #dfe6e9;
    padding: 30px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

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

.service-card h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #2c3e50;
    margin-top: 0;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

.service-card p {
    margin-bottom: 14px;
    font-size: 1rem;
}

.service-card ul {
    margin: 16px 0 20px 20px;
    list-style-type: disc;
}

.service-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c0392b;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #c0392b;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border: 1px solid #e1e8ed;
}

.form-section.hidden {
    display: none;
}

.form-section h2 {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

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

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

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1rem;
    color: #555;
}

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

.thanks-info {
    margin: 50px 0;
    text-align: left;
}

.thanks-info ul {
    margin: 20px 0;
    list-style-position: inside;
}

.thanks-info li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.next-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.next-link {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.next-link:hover {
    background-color: #2980b9;
}

.legal-page ul {
    margin: 16px 0 16px 30px;
    list-style-type: disc;
}

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

.legal-page a {
    color: #c0392b;
    text-decoration: underline;
}

.legal-page a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
    }

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

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

    .next-steps {
        flex-direction: column;
        align-items: center;
    }
}