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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #faf8f5;
}

.ad-disclosure {
    background-color: #f4e8d8;
    color: #6b5842;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #d9c9b3;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #8b5a2b;
    font-family: 'Arial', sans-serif;
}

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

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

.nav-links a:hover {
    color: #8b5a2b;
}

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

.editorial-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 35px;
    background-color: #e8dcc8;
    overflow: hidden;
}

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

.hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: normal;
}

.hero-intro {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.7;
}

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

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a3a3a;
}

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

.editorial-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: normal;
}

.editorial-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-weight: normal;
}

.inline-image-section {
    margin: 45px 0;
    background-color: #f2ece1;
    padding: 20px;
}

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

.image-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #6b5842;
    font-style: italic;
    text-align: center;
}

.content-cta-inline {
    background-color: #fff8ed;
    border-left: 4px solid #c78948;
    padding: 25px 30px;
    margin: 40px 0;
}

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

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

.service-block {
    margin-bottom: 45px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e2d8;
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #8b5a2b;
}

.service-meta {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    font-size: 16px;
    color: #6b5842;
    font-family: 'Arial', sans-serif;
}

.service-duration {
    font-style: italic;
}

.service-price {
    font-weight: bold;
    color: #8b5a2b;
}

.editorial-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e8e2d8;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d9c9b3;
    background-color: #faf8f5;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5a2b;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #8b5a2b;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6b4521;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #d9c9b3;
    color: #2c2c2c;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #c7b49f;
}

.content-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e2d8;
}

.disclaimer {
    font-size: 14px;
    color: #6b5842;
    line-height: 1.7;
    background-color: #fef9f0;
    padding: 20px;
    border-left: 3px solid #d9c9b3;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: normal;
}

.header-subtitle {
    font-size: 20px;
    color: #5a5a5a;
}

.services-detailed {
    margin: 50px 0;
}

.service-detailed-block {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.service-detailed-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrap {
    flex: 0 0 280px;
    background-color: #e8dcc8;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    margin-top: 0;
    font-size: 28px;
}

.service-pricing-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e8e2d8;
    font-family: 'Arial', sans-serif;
}

.price-label {
    color: #6b5842;
    font-size: 15px;
}

.price-value {
    font-size: 18px;
    font-weight: bold;
    color: #8b5a2b;
    margin-left: 10px;
}

.content-cta-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff8ed;
    text-align: center;
}

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

.content-cta-section p {
    margin-bottom: 25px;
}

.contact-info-blocks {
    margin: 50px 0;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #8b5a2b;
}

.contact-detail {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

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

.thanks-page {
    text-align: center;
    padding: 60px 30px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #8b5a2b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 50%;
}

.thanks-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: normal;
}

.thanks-info-box {
    background-color: #ffffff;
    border: 1px solid #e8e2d8;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info-box h2 {
    margin-top: 0;
    font-size: 24px;
}

.thanks-steps {
    margin-left: 25px;
    line-height: 2;
}

.thanks-cta {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-page .editorial-content {
    font-size: 16px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

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

.legal-page a {
    color: #8b5a2b;
}

.legal-updated {
    font-size: 15px;
    color: #6b5842;
    font-style: italic;
}

.site-footer {
    background-color: #2c2416;
    color: #d9c9b3;
    padding: 50px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d9c9b3;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-info {
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.footer-info p {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2416;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 1000;
    border-top: 3px solid #8b5a2b;
}

.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;
    margin: 0;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.btn-accept:hover {
    background-color: #6b4521;
}

.btn-reject {
    background-color: #6b5842;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a4832;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .service-detailed-block {
        flex-direction: column;
    }

    .service-detailed-block:nth-child(even) {
        flex-direction: column;
    }

    .service-image-wrap {
        flex: 1;
        width: 100%;
    }

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

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}