/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0ebe3;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #e0d8cc;
}

/* Navigation */
.top-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

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

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

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

/* Editorial Content Layout */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

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

/* Hero Image */
.hero-image {
    margin: 50px 0;
    background-color: #e8e4dc;
}

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

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.content-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-section a {
    color: #6b4e3d;
    text-decoration: underline;
}

.content-section a:hover {
    color: #4a3629;
}

/* Images within Content */
.with-image {
    margin-top: 60px;
}

.section-image {
    margin: 30px 0;
    background-color: #e8e4dc;
}

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

/* Testimonials */
.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #f5f2ed;
    border-left: 4px solid #c9b8a0;
}

.testimonial-inline blockquote {
    font-size: 21px;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
}

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

/* Insight Box */
.insight-box {
    margin: 40px 0;
    padding: 35px;
    background-color: #fff;
    border: 2px solid #e8e4dc;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 0;
    color: #2c2c2c;
}

.insight-box ul {
    list-style: none;
    padding-left: 0;
}

.insight-box li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.insight-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9b8a0;
    font-size: 24px;
}

/* Inline CTA */
.inline-cta {
    margin: 50px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6b4e3d;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

/* Services Inline */
.services-inline {
    margin: 40px 0;
}

.service-card {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e8e4dc;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #2c2c2c;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 600;
    color: #6b4e3d;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.select-service {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

/* Form Container */
.form-container {
    margin: 50px 0;
    padding: 40px;
    background-color: #f5f2ed;
    border: 2px solid #c9b8a0;
}

.form-container h3 {
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 0;
}

.selected-price {
    font-size: 18px;
    color: #6b4e3d;
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: Georgia, serif;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: #6b4e3d;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

/* Disclaimer */
.disclaimer {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff9f0;
    border-left: 4px solid #d4a574;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* References */
.references-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e8e4dc;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.references-list a {
    color: #6b4e3d;
    text-decoration: none;
}

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

/* Contact Info */
.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e8e4dc;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 17px;
    margin-bottom: 10px;
}

.contact-item .note {
    font-size: 15px;
    color: #888;
    font-style: italic;
}

/* Order Summary */
.order-summary {
    margin: 30px 0;
    padding: 30px;
    background-color: #f5f2ed;
    border: 2px solid #c9b8a0;
}

.order-summary h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 0;
}

.order-summary p {
    font-size: 17px;
    margin-bottom: 10px;
}

/* Legal Pages */
.legal-page ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

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

.legal-page .note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1000px;
    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: 15px;
    color: #fff;
    font-family: Arial, sans-serif;
}

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

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

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

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    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: 14px;
    font-family: Arial, sans-serif;
}

.cookie-content a {
    color: #c9b8a0;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #6b4e3d;
    color: #fff;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

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

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

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .editorial-content {
        padding: 40px 20px;
    }

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

    .testimonial-inline {
        padding: 25px;
    }

    .insight-box {
        padding: 25px;
    }

    .form-container {
        padding: 25px;
    }

    .service-card {
        padding: 20px;
    }
}