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

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

.ad-disclosure {
    background-color: #f39c12;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure p {
    margin: 0;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

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

.article-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.article-header-content {
    padding: 50px 30px;
    text-align: center;
}

.article-header-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #333;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #1a1a1a;
}

.content-image {
    margin: 40px 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #c0392b;
}

.cta-link-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #34495e;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link-secondary:hover {
    background-color: #2c3e50;
}

blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 25px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: #555;
}

.services-preview {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 45px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.select-service.selected {
    background-color: #27ae60;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 15px;
}

.form-section > p {
    text-align: center;
    margin-bottom: 35px;
    color: #555;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.disclaimer {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff3cd;
    border-left: 4px solid #f39c12;
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.disclaimer strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.site-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 50px 30px 30px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #4a5f7f;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px 30px;
    z-index: 200;
    display: none;
}

.cookie-banner.visible {
    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: 15px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

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

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

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

.thanks-page {
    max-width: 700px;
    margin: 80px auto;
    padding: 50px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-page .service-info {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin: 35px 0;
}

.thanks-page .service-info strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    color: #2c3e50;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

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

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

    .article-header-content h1 {
        font-size: 32px;
    }

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

    .content-narrow p {
        font-size: 16px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

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

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