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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #87ceeb;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

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

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

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

.nav-minimal {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f3f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2c5f3f;
    transition: all 0.3s;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f3f;
}

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

.hero-editorial {
    margin-bottom: 80px;
}

.hero-text-narrow {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text-narrow h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.hero-image-inline {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.text-block-narrow {
    margin: 60px 0;
}

.text-block-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

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

.link-arrow {
    color: #2c5f3f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.split-content-editorial {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 80px 0;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

.split-image {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-cards-inline {
    margin: 80px 0;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.service-card-editorial {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.service-card-editorial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c5f3f;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f3f;
}

.duration {
    font-size: 14px;
    color: #777;
}

.btn-select-service {
    background: #2c5f3f;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonial-inline {
    background: #f8f9fa;
    padding: 50px 40px;
    border-left: 4px solid #2c5f3f;
    margin: 70px 0;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.image-break {
    margin: 80px -30px;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-box-editorial {
    background: linear-gradient(135deg, #2c5f3f 0%, #3a7a52 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
    margin: 70px 0;
}

.cta-box-editorial h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box-editorial p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    background: white;
    color: #2c5f3f;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-section {
    margin: 80px 0;
}

.form-container-editorial {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container-editorial h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.booking-form .form-group {
    margin-bottom: 25px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2c5f3f;
}

.btn-submit {
    background: #2c5f3f;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #234d33;
}

.faq-simple {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 20px;
    color: #2c5f3f;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.footer-editorial {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 30px 20px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

.contact-page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info-block {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c5f3f;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
}

.contact-info-block strong {
    color: #2c5f3f;
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f3f;
}

.legal-page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c5f3f;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.legal-page-content ul {
    margin: 15px 0 15px 30px;
}

.legal-page-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.thanks-page-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
}

.thanks-page-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f3f;
}

.thanks-page-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.thanks-page-content a {
    display: inline-block;
    margin-top: 30px;
    background: #2c5f3f;
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.thanks-page-content a:hover {
    background: #234d33;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-text-narrow h1 {
        font-size: 36px;
    }

    .lead-text {
        font-size: 18px;
    }

    .split-content-editorial {
        flex-direction: column;
    }

    .section-title-center {
        font-size: 30px;
    }

    .service-card-editorial {
        padding: 30px 25px;
    }

    .cta-box-editorial {
        padding: 40px 25px;
    }

    .form-container-editorial {
        padding: 35px 25px;
    }

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

    .image-break {
        margin: 60px 0;
    }

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