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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8925c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --border-color: #e0e0e0;
    --accent-gold: #c9a961;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 18px;
    background: #ffffff;
}

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.editorial-flow {
    margin-top: 80px;
}

.hero-editorial {
    max-width: 900px;
    margin: 4rem auto 5rem;
    padding: 0 2rem;
}

.hero-text-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-centered h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.content-narrow {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-narrow h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.inline-cta {
    max-width: 680px;
    margin: 2.5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.btn-text-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    background: var(--primary-color);
    color: white;
}

.inline-image {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

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

.trust-block {
    background: var(--bg-cream);
    padding: 4rem 2rem;
    margin: 5rem 0;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-inline {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-block-centered {
    max-width: 680px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
}

.cta-block-centered h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.packages-editorial {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.package-card {
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    background: white;
    position: relative;
}

.package-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.package-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-includes li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-medium);
}

.package-includes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.package-price {
    margin: 2rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-note {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.btn-select-package {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-select-package:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.urgency-section {
    background: #fff9f0;
    border-left: 4px solid var(--accent-gold);
    padding: 3rem 2rem;
    margin: 4rem 0;
}

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

.urgency-content h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.form-section {
    max-width: 680px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-container-editorial h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.checkbox-group span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-group a {
    color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.1rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.final-testimonials {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.final-testimonials h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

.final-cta-editorial {
    max-width: 680px;
    margin: 5rem auto 6rem;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-cream);
    border-radius: 4px;
}

.final-cta-editorial h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.final-cta-editorial > p:first-of-type {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    border-top: 2px solid var(--secondary-color);
}

.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;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: var(--accent-gold);
}

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

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

.cookie-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
}

.cookie-link:hover {
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}