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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8faa9e;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c74a4a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 3px;
    white-space: nowrap;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.editorial-container {
    max-width: 100%;
}

.editorial-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.editorial-intro {
    background-color: var(--bg-white);
    padding: 4rem 2rem;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.editorial-intro h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.editorial-intro h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.editorial-intro h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.editorial-intro p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.editorial-intro ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.editorial-intro li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: var(--bg-light);
}

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

.inline-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.highlight-box {
    background-color: #f3f7f5;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.inline-cta {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.8rem 1.8rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.inline-cta:hover {
    background-color: #c4955e;
    transform: translateY(-2px);
}

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.testimonial-inline blockquote {
    font-style: italic;
    color: var(--text-medium);
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.testimonial-inline cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
}

.service-card-inline {
    margin: 3rem 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-card-inline img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-text {
    padding: 2rem;
}

.service-text h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.price-reveal {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0;
}

.price-reveal strong {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-select:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.form-section {
    background-color: #f3f7f5;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.form-section h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 0.85rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff8e8;
    border-left: 4px solid #d4a574;
    padding: 1.5rem;
    margin: 3rem 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.references-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.page-header {
    background-color: var(--bg-light);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    margin: 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.service-detail {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-color: var(--bg-light);
    object-fit: cover;
}

.price-info {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1rem 0;
}

.price-info strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-info {
    margin: 2.5rem 0;
}

.email-display {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.thanks-section {
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.thanks-box h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-content {
    margin: 2rem 0;
    text-align: left;
}

.thanks-actions {
    margin-top: 2.5rem;
}

.legal-content {
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

#openCookieSettings {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-disclosure {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .editorial-intro {
        padding: 2rem 1rem;
    }

    .editorial-intro h2 {
        font-size: 1.6rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .thanks-box {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        gap: 1rem;
    }

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