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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #e8773d;
    --text-color: #2c2c2c;
    --text-light: #5a5a5a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4a9d5f;
    --max-content-width: 680px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    font-size: 17px;
}

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

.nav-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

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

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

.editorial-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.story-header {
    margin: 3rem 0 2.5rem;
}

.story-header h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

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

.hero-visual {
    margin: 2.5rem 0;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-visual {
    margin: 2.5rem 0;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.inline-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    margin: 2.5rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.4px;
}

.story-section h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
}

.story-section p {
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.story-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-color);
}

.story-section li {
    margin-bottom: 0.6rem;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2.5rem 0;
}

.highlight-box h2,
.highlight-box h3 {
    margin-top: 0;
}

.highlight-box p {
    margin-bottom: 0;
}

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

.testimonial-inline blockquote {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-inline p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

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

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

.cta-inline h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-inline p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d66b33;
    transform: translateY(-1px);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-details {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.service-details li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: var(--primary-color);
}

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

.form-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.form-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s;
}

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

.btn-submit {
    margin-top: 1rem;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}

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

.contact-item p {
    color: var(--text-color);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-service-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.thanks-service-info p {
    margin: 0.5rem 0;
}

.story-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copy {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--bg-white);
    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;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

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

@media (max-width: 768px) {
    .story-header h1 {
        font-size: 1.9rem;
    }

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

    .story-section h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .editorial-container {
        padding: 0 1.2rem 3rem;
    }

    .form-section {
        padding: 1.8rem;
    }

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

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

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

    body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.6rem;
    }

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

    .story-section h2 {
        font-size: 1.3rem;
    }

    .price-tag {
        font-size: 1.4rem;
    }
}