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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.editorial-hero {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 4px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.editorial-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
}

.editorial-section {
    margin-bottom: 3.5rem;
}

.editorial-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.editorial-section p {
    margin-bottom: 1.3rem;
    color: #2a2a2a;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.inline-image {
    margin: 2.5rem 0;
}

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

.service-card-editorial {
    background: #fff;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #1a1a1a;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0;
    padding: 0.5rem 0;
}

.price-tag-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0;
}

.btn-inline {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.btn-inline:hover {
    background: #3a3a3a;
}

.editorial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #4a4a4a;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #1a1a1a;
    background: #f5f5f5;
}

.quote-author {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    margin-top: 1rem;
    color: #666;
}

.booking-section {
    background: #fff;
    padding: 2.5rem;
    margin: 3rem -2.5rem;
}

.booking-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #3a3a3a;
}

.editorial-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-cookie-accept {
    background: #fff;
    color: #1a1a1a;
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.editorial-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.editorial-list li {
    margin-bottom: 0.7rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.contact-detail a {
    color: #1a1a1a;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item p {
    margin-bottom: 0.8rem;
}

.service-confirmation {
    background: #f5f5f5;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #1a1a1a;
}

.service-selected {
    font-size: 1.1rem;
}

.thanks-cta {
    text-align: center;
    margin: 3rem 0;
}

.rights-section {
    margin-bottom: 2.5rem;
}

.rights-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.cookie-table {
    background: #f9f9f9;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 3px solid #ddd;
}

.cookie-table h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .editorial-title {
        font-size: 2.2rem;
    }

    .editorial-subtitle {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
        text-align: center;
    }

    .booking-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

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

    .editorial-title {
        font-size: 1.8rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }
}