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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90b5;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

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

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.article-intro {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image {
    margin: 50px 0;
    background-color: #e9ecef;
}

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

.story-section {
    margin-bottom: 60px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-section h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #f1f3f5;
}

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

.image-caption {
    padding: 15px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    margin: 40px 0;
    background-color: var(--bg-light);
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.cta-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 40px 35px;
    margin: 50px 0;
    text-align: center;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.services-preview {
    margin: 80px 0;
    max-width: 1000px;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.service-card {
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    background-color: #e9ecef;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    margin: 0 25px 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.contact-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin: 80px -30px 60px;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.disclaimer {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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.6;
}

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

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

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

.cookie-accept:hover {
    background-color: #d35400;
}

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

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

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

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

.thanks-page p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-page .selected-service {
    font-size: 24px;
    color: var(--accent-color);
    margin: 30px 0;
    font-weight: 600;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.thanks-page a:hover {
    color: var(--primary-color);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

    .article-intro {
        font-size: 18px;
    }

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

    .story-section p {
        font-size: 17px;
    }

    .story-section h2 {
        font-size: 26px;
    }

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

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

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

    .contact-section {
        margin-left: -20px;
        margin-right: -20px;
    }
}