* {
    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.7;
    color: #2c3e50;
    background-color: #fdfbf7;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b4513;
}

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

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

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

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

.story-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #333;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.content-block ul,
.content-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #444;
}

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

.cta-link {
    font-size: 1.15rem;
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #a0522d;
    border-bottom-color: #a0522d;
}

.visual-break {
    margin: 3.5rem 0;
}

.visual-break img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.visual-break figcaption {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 0.7rem;
    font-style: italic;
}

blockquote {
    border-left: 4px solid #8b4513;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #777;
}

.services-preview {
    margin: 3rem 0;
}

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

.service-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 6px;
    border: 1px solid #e8e4df;
    transition: box-shadow 0.3s ease;
}

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

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

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.btn-service:hover {
    background-color: #a0522d;
}

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e8e4df;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-note {
    font-size: 1.15rem;
    color: #555;
    font-style: italic;
    margin-top: 2rem;
}

.services-detail {
    margin: 3rem 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e4df;
}

.service-item:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    margin-bottom: 1.5rem;
}

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

.service-info h2 {
    margin-top: 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1rem 0;
}

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

.contact-block {
    background: #fff;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e8e4df;
    margin-bottom: 2rem;
}

.contact-block h2 {
    margin-top: 0;
}

.contact-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-block a {
    color: #8b4513;
    text-decoration: none;
}

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

.contact-note {
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-left: 4px solid #8b4513;
    margin-bottom: 2rem;
}

.contact-note p {
    margin-bottom: 0.8rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

.thanks-message {
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.next-steps li {
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

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

.legal-content a {
    color: #8b4513;
    text-decoration: none;
}

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2.5rem 5%;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer p {
    font-size: 0.9rem;
    color: #bbb;
}

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

.cookie-banner.show {
    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: #fff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #8b4513;
    color: #fff;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .story-content h1 {
        font-size: 2rem;
    }

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

    .editorial-container {
        padding: 2rem 1rem;
    }

    .service-cards {
        gap: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-content h1 {
        font-size: 1.7rem;
    }

    .btn-service,
    .btn-submit {
        width: 100%;
    }
}