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

body {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Hero Editorial */
.hero-editorial {
    background-color: #ffffff;
    padding: 80px 0 60px;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.hero-image-container {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 24px;
    background-color: #e8e8e8;
}

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

/* Content Narrow (Editorial Style) */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 24px;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.content-narrow p {
    margin-bottom: 24px;
    color: #3a3a3a;
}

.content-narrow ul {
    margin: 24px 0 24px 32px;
    color: #3a3a3a;
}

.content-narrow li {
    margin-bottom: 12px;
}

/* Section Alt Background */
.section-alt {
    background-color: #f5f5f5;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

/* Inline Images */
.inline-image-wrapper {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

/* Service Cards Editorial */
.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e0e0e0;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-editorial p {
    margin-bottom: 16px;
    color: #4a4a4a;
}

.price-tag {
    font-size: 28px;
    font-weight: 600;
    color: #2c5f4f;
    margin: 24px 0 16px;
}

/* Buttons */
.btn-select-service,
.btn-submit,
.btn-primary {
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover,
.btn-submit:hover,
.btn-primary:hover {
    background-color: #234a3d;
}

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

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

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

.cta-link-soft {
    color: #2c5f4f;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid #2c5f4f;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-link-soft:hover {
    color: #1a3a2d;
    border-color: #1a3a2d;
}

/* Form Editorial */
.form-editorial {
    margin-top: 48px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    font-family: 'Georgia', serif;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f4f;
    background-color: #ffffff;
}

/* Testimonials */
.testimonials-section {
    background-color: #f9f9f9;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.testimonial {
    margin: 32px 0;
    padding: 24px;
    background-color: #ffffff;
    border-left: 4px solid #2c5f4f;
}

.testimonial p {
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #6a6a6a;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #c0c0c0;
    padding: 48px 24px 32px;
}

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    justify-content: center;
}

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

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

.footer-disclaimer {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #909090;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #808080;
}

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

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

.cookie-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.btn-cookie-accept {
    background-color: #2c5f4f;
    color: #ffffff;
}

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

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

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

/* Page Content */
.page-content {
    min-height: 400px;
}

/* Services Detailed */
.services-detailed {
    margin-top: 48px;
}

.service-detail-block {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    min-width: 280px;
    background-color: #e8e8e8;
}

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

.service-detail-content {
    flex: 1;
    min-width: 280px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f4f;
    margin: 12px 0 20px;
}

.service-detail-content .btn-select-service {
    margin-top: 16px;
}

.services-cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 48px 32px;
    background-color: #f5f5f5;
}

.services-cta-section h2 {
    margin-bottom: 16px;
}

.services-cta-section p {
    margin-bottom: 32px;
}

/* Contact */
.contact-info-block {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 48px 0;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail p {
    margin-bottom: 8px;
    color: #3a3a3a;
}

.contact-detail .note {
    font-size: 16px;
    font-style: italic;
    color: #6a6a6a;
}

.contact-image-wrapper {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.contact-additional {
    margin: 48px 0;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.thanks-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.thanks-details {
    margin: 32px 0;
    padding: 24px;
    background-color: #f5f5f5;
}

.thanks-details p {
    margin: 0;
    font-size: 18px;
}

.thanks-next-steps {
    margin: 48px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 24px;
}

.steps-list {
    list-style: decimal;
    margin-left: 48px;
}

.steps-list li {
    margin-bottom: 16px;
    padding-left: 8px;
}

.thanks-image-wrapper {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.thanks-additional {
    margin: 32px 0;
}

.thanks-cta {
    margin-top: 48px;
}

/* Legal Pages */
.legal-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-page ul {
    margin: 16px 0 16px 32px;
}

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

.legal-page a {
    color: #2c5f4f;
    text-decoration: underline;
}

.last-updated {
    font-size: 16px;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 32px;
}

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

    .nav-links {
        gap: 16px;
    }

    .hero-content-narrow h1 {
        font-size: 32px;
    }

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

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

    .service-detail-block {
        flex-direction: column;
        gap: 24px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-editorial {
        padding: 24px;
    }
}