* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.cookie-btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 5px 12px;
    border-radius: 3px;
}

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

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

.editorial-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.editorial-intro {
    font-size: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.editorial-content {
    font-size: 18px;
    line-height: 1.8;
}

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

.editorial-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.editorial-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.editorial-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.editorial-image-small {
    margin: 30px 0;
    max-width: 500px;
}

.editorial-image-small img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.inline-cta {
    margin: 35px 0;
    padding: 25px;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
    text-align: center;
}

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.testimonial-inline {
    margin: 45px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 5px solid #95a5a6;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 15px;
    color: #7f8c8d;
}

.editorial-list {
    margin: 25px 0;
    padding-left: 25px;
}

.editorial-list li {
    margin-bottom: 12px;
}

.highlight-box {
    margin: 40px 0;
    padding: 30px;
    background-color: #fff3cd;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #856404;
}

.highlight-box p {
    margin-bottom: 0;
    color: #856404;
}

.services-reveal {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
}

.service-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 22px;
}

.service-item p {
    margin-bottom: 12px;
    font-size: 16px;
}

.service-price {
    font-weight: bold;
    font-size: 20px;
    color: #27ae60;
    margin-top: 15px;
}

.select-service-btn {
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

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

.form-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 2px solid #3498db;
    border-radius: 4px;
}

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

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

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

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

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

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

.submit-btn {
    padding: 15px 40px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    margin: 60px 0;
    padding: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
}

.final-cta h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 30px;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.disclaimer {
    margin: 50px 0;
    padding: 25px;
    background-color: #ecf0f1;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
}

.disclaimer strong {
    color: #2c3e50;
}

.references {
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.references h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.references ol {
    margin-left: 20px;
}

.references li {
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

.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;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-column h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .editorial-content {
        font-size: 16px;
    }

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

    .final-cta {
        padding: 30px 20px;
    }

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