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

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

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin: 0 1rem;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b4e3d;
}

.editorial-content {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8e0d8;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 4rem 2rem;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.intro-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.narrow-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f5f1ed;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonial-inline {
    background-color: #f8f6f3;
    border-left: 4px solid #a08070;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.reference {
    color: #6b4e3d;
    text-decoration: none;
    font-weight: 600;
    padding: 0 2px;
}

.reference:hover {
    text-decoration: underline;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6b4e3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #54392e;
    transform: translateY(-2px);
}

.service-card-editorial {
    margin: 3rem 0;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.service-image {
    width: 100%;
    background-color: #f0ebe6;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.6rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b4e3d;
}

.btn-select {
    padding: 0.8rem 1.8rem;
    background-color: #8b6f5c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-select:hover {
    background-color: #6b4e3d;
}

.form-section-editorial {
    background-color: #f8f6f3;
    padding: 3rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.form-section-editorial h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #e8dfd6;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #3a3a3a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f5c;
}

.btn-submit {
    padding: 1rem 3rem;
    background-color: #6b4e3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.disclaimer-section {
    background-color: #fff9f5;
    border: 1px solid #e8d4c4;
    padding: 2rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.references-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.references-section h3 {
    margin-top: 0;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1rem;
}

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

.footer-brand h4,
.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-brand p,
.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-accept {
    background-color: #6b4e3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #54392e;
}

.btn-reject {
    background-color: #444;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background-color: #f8f6f3;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.contact-info-section {
    margin: 3rem 0;
}

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

.contact-item h3 {
    margin-top: 0;
    color: #6b4e3d;
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.thanks-section {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-box {
    background-color: #e8dfd6;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.selected-service-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.selected-service-box p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b4e3d;
}

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }

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

    .story-intro {
        padding: 2rem 1rem;
    }

    .intro-lead {
        font-size: 1.2rem;
    }

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

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-submit {
        font-size: 1rem;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}