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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #fafafa;
}

.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-minimal {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 13px;
    color: #888;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-editorial {
    padding: 60px 0 40px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-large {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image-container {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.story-section,
.insight-section,
.approach-section,
.services-preview,
.testimonial-section,
.form-section {
    padding: 50px 0;
}

.story-section h2,
.insight-section h2,
.approach-section h2,
.services-preview h2,
.testimonial-section h2,
.form-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    font-weight: 400;
}

.story-section p,
.approach-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.insight-card {
    margin: 30px 0;
    padding: 24px;
    background: #fff;
    border-left: 3px solid #2c5aa0;
}

.insight-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5aa0;
    font-weight: 600;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
}

.service-inline {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.service-inline h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-inline p {
    font-size: 17px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 16px 0;
}

.cta-inline {
    background: #2c5aa0;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 12px;
}

.cta-inline:hover {
    background: #234a87;
}

.testimonial {
    margin: 30px 0;
    padding: 24px;
    background: #f9f9f9;
    border-left: 4px solid #2c5aa0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 15px;
}

.editorial-form {
    max-width: 500px;
    margin: 30px 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.btn-submit {
    background: #2c5aa0;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.disclaimer-section {
    padding: 40px 0;
    border-top: 1px solid #ddd;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
}

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

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

.btn-accept {
    background: #2c5aa0;
    color: #fff;
}

.btn-accept:hover {
    background: #234a87;
}

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

.btn-reject:hover {
    background: #444;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .intro-large {
        font-size: 18px;
    }

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

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