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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #2c5f7e;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --text-color: #2a2a2a;
    --text-light: #6a6a6a;
}

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

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

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

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

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

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

.hero-text-narrow h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--secondary-color);
    font-weight: 400;
}

.hero-image {
    width: 100%;
    margin-top: 2rem;
}

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

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

.text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.editorial-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.editorial-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.editorial-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.editorial-section strong {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.image-left,
.image-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.inline-cta {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    font-size: 1.05rem;
    transition: opacity 0.2s;
}

.inline-cta:hover {
    opacity: 0.7;
}

.editorial-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.editorial-callout {
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 4px;
    margin: 4rem 0;
}

.editorial-testimonials {
    margin: 4rem 0;
}

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

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.editorial-services {
    margin: 5rem 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.service-duration {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #234a61;
}

.editorial-form-section {
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 4px;
    margin: 4rem 0;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.readonly-input {
    background-color: var(--light-bg);
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: background-color 0.2s;
}

.btn-cta-large:hover {
    background-color: #234a61;
}

.services-detail-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

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

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

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

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.thanks-section {
    text-align: center;
    padding: 3rem 0;
}

.thanks-info {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-info ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.thanks-info li {
    margin-bottom: 0.5rem;
}

.thanks-selected-service {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-selected-service .service-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.thanks-selected-service .service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.thanks-cta {
    margin-top: 3rem;
}

.legal-page .text-narrow {
    max-width: 800px;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

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

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

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

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

    .lead {
        font-size: 1.1rem;
    }

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

    .editorial-section h3 {
        font-size: 1.3rem;
    }

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

    .editorial-quote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

@media (min-width: 769px) {
    .service-detail-card {
        flex-direction: row;
    }

    .service-detail-image {
        width: 40%;
        flex-shrink: 0;
    }

    .service-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-info-section {
        flex-direction: row;
    }
}
