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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #6b4423;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.editorial-main {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c5b9;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px 0;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.subtitle {
    font-size: 22px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

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

.drop-cap::first-letter {
    font-size: 72px;
    line-height: 60px;
    float: left;
    margin: 8px 10px 0 0;
    color: #6b4423;
    font-weight: 700;
}

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

.content-narrow h2 {
    font-size: 36px;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #2c2c2c;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    font-weight: 600;
    color: #2c2c2c;
}

.inline-image {
    margin: 45px 0;
    background-color: #f0ebe6;
}

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

.inline-image figcaption {
    padding: 15px 20px;
    font-size: 14px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.content-img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    background-color: #f0ebe6;
    object-fit: cover;
}

.insight-block {
    background-color: #f9f6f3;
    border-left: 4px solid #6b4423;
    padding: 30px 35px;
    margin: 40px 0;
}

.insight-block h3 {
    margin-top: 0;
    font-size: 22px;
}

.insight-block p {
    margin-bottom: 15px;
}

.insight-block p:last-child {
    margin-bottom: 0;
}

.citation {
    color: #6b4423;
    text-decoration: none;
    font-weight: 600;
}

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

.benefit-list {
    margin: 25px 0 25px 30px;
}

.benefit-list li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 15px;
    opacity: 0.8;
}

.service-cards-editorial {
    margin: 50px 0;
}

.service-card {
    background-color: #fafaf8;
    border: 1px solid #e0e0e0;
    padding: 35px;
    margin-bottom: 25px;
}

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

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #6b4423;
    margin: 20px 0 15px;
}

.select-service-btn {
    background-color: #6b4423;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background-color: #8b5a2b;
}

.select-service-btn.selected {
    background-color: #2c2c2c;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background-color: #f0ebe6;
}

.cta-inline p {
    font-size: 19px;
    color: #2c2c2c;
    margin: 0;
}

.order-form-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f9f6f3;
    border: 2px solid #6b4423;
}

.order-form-section h3 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #6b4423;
}

.selected-service-display p {
    margin: 0;
    font-size: 17px;
    color: #2c2c2c;
}

.selected-service-display.has-selection p {
    font-weight: 600;
    color: #6b4423;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #6b4423;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px;
    background-color: #f0f0f0;
    border-top: 2px solid #ccc;
}

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

.references-section {
    margin: 50px 0;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
}

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

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

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

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thanks-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 30px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border: 2px solid #6b4423;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thanks-box .service-ordered {
    background-color: #f9f6f3;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #6b4423;
}

.thanks-box .service-ordered p {
    margin: 0;
    font-weight: 600;
    color: #6b4423;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #6b4423;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-box a:hover {
    background-color: #8b5a2b;
}

.about-page,
.services-page,
.contact-page,
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.about-page h1,
.services-page h1,
.contact-page h1,
.legal-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-page h2,
.services-page h2,
.contact-page h2,
.legal-page h2 {
    font-size: 32px;
    margin: 45px 0 20px;
    font-weight: 400;
}

.about-page p,
.services-page p,
.contact-page p,
.legal-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-page ul,
.legal-page ul {
    margin: 20px 0 20px 30px;
}

.about-page li,
.legal-page li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.about-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    background-color: #f0ebe6;
    object-fit: cover;
}

.contact-info {
    background-color: #f9f6f3;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #6b4423;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 17px;
}

.contact-info strong {
    display: inline-block;
    min-width: 140px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-item {
    background-color: #fafaf8;
    border: 1px solid #e0e0e0;
    padding: 35px;
}

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

.service-item p {
    margin-bottom: 15px;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #6b4423;
    margin: 20px 0 0;
}

.legal-page h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: 600;
}

.legal-page strong {
    font-weight: 600;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .content-narrow {
        padding: 0 20px 60px;
    }

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

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

    .order-form-section {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}