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

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

.ad-notice {
    background-color: #f4f1ed;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd8;
}

.minimal-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e5e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.story-header {
    margin-bottom: 50px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.story-section {
    margin-bottom: 40px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 36px;
    color: #2c2c2c;
    font-weight: 600;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
}

.inline-image.narrow {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.insight-block {
    background-color: #f9f7f4;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #c9a962;
}

.insight-block h2,
.insight-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-block p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.service-showcase {
    margin: 60px 0;
}

.service-showcase h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.service-card-inline {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card-inline.reverse {
    flex-direction: column;
}

.service-card-inline img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    background-color: #e8e5e0;
}

.service-info {
    padding: 10px 0;
}

.service-info h2,
.service-info h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #c9a962;
    margin: 20px 0 16px;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #333;
}

blockquote {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafaf8;
    border-left: 3px solid #d4cfc3;
    font-style: italic;
}

blockquote p {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

blockquote cite {
    display: block;
    font-size: 15px;
    color: #666;
    font-style: normal;
    margin-top: 12px;
}

.contact-inline {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f5f3ef;
    border-radius: 4px;
}

.contact-inline h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-inline p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #444;
}

.contact-inline a {
    color: #c9a962;
    text-decoration: underline;
}

.editorial-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d4cfc3;
    border-radius: 3px;
    font-family: inherit;
    background-color: #fff;
}

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

.submit-btn {
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.story-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0ddd8;
}

.disclaimer {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #faf9f7;
    border-radius: 4px;
}

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    justify-content: center;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #1a1a1a;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #999;
}

.contact-details {
    margin: 40px 0;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.cookie-table {
    margin: 30px 0;
    padding: 24px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.cookie-table h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cookie-table p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

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

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

.accept-btn,
.reject-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .story-header h1 {
        font-size: 32px;
    }

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

    .story-section h2 {
        font-size: 26px;
    }

    .story-section h3 {
        font-size: 20px;
    }

    .story-section p {
        font-size: 17px;
    }

    .insight-block {
        padding: 24px;
    }

    .contact-inline {
        padding: 30px 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .accept-btn,
    .reject-btn {
        width: 100%;
    }
}
