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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-family: Arial, sans-serif;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-editorial {
    text-align: center;
    margin-bottom: 20px;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image-inline {
    margin: 40px 0;
}

.hero-image-inline img,
.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.text-section {
    margin: 30px 0;
}

.text-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.text-section h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.text-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.inline-image-block {
    margin: 50px 0;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #d35400;
}

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

.services-editorial h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.service-card-editorial {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.service-card-editorial.reverse {
    flex-direction: column-reverse;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-details {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1rem;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
}

.select-service {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #229954;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.testimonial {
    font-size: 1.15rem;
    font-style: italic;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    background-color: var(--bg-light);
    margin: 30px 0;
}

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

.form-section-editorial {
    margin: 60px 0;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section-editorial h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-section-editorial > p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: Arial, sans-serif;
    background-color: var(--bg-white);
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.submit-btn {
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #d35400;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fffbf0;
    border: 1px solid #f0e4c3;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.page-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

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

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.email-display {
    font-family: Arial, sans-serif;
    color: var(--text-color);
}

.contact-image {
    margin: 20px 0;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.thanks-container {
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-confirmation {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 30px 0;
}

.service-confirmation p {
    font-size: 1.05rem;
    margin: 8px 0;
}

.thanks-info {
    font-size: 1rem;
    color: var(--text-light);
    margin: 30px 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

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

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-section {
    margin: 40px 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-update {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

.cookie-table {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 20px 0;
}

.cookie-table h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-table p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 30px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .text-section h2 {
        font-size: 1.6rem;
    }

    .text-section p {
        font-size: 1rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .cookie-btn {
        width: 100%;
    }
}
