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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fdfdfb;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

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

.story-header {
    margin-bottom: 40px;
    text-align: center;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.story-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.story-content {
    font-size: 1.1rem;
}

.story-content p {
    margin-bottom: 24px;
}

.story-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-image {
    margin: 40px 0;
}

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

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

.insight-box {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.cta-inline {
    background-color: #ecf8ff;
    padding: 24px;
    margin: 40px 0;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 0;
}

.cta-inline a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.cta-inline a:hover {
    text-decoration: underline;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #27ae60;
    margin: 20px 0;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer {
    background-color: #fff9e6;
    padding: 24px;
    margin: 40px 0;
    border: 1px solid #ffd966;
    border-radius: 4px;
    font-size: 0.95rem;
}

.references {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.references p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

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

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.page-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-page a:hover {
    background-color: #2980b9;
}

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

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

    .editorial-container {
        padding: 40px 15px;
    }

    .story-header h1 {
        font-size: 2rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}