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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    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 {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

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

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

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

.article-hero {
    margin-bottom: 50px;
}

.hero-image-container {
    margin-bottom: 40px;
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 2px;
}

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

.main-heading {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.5;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.narrative-section p {
    margin-bottom: 28px;
    text-align: justify;
}

.narrative-section h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.narrative-section h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 35px;
    margin-bottom: 18px;
}

.inline-image-block {
    margin: 45px 0;
    background-color: #fafafa;
    padding: 0;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 12px;
}

figcaption {
    font-size: 15px;
    color: #777;
    font-style: italic;
    padding: 0 15px 15px;
    text-align: center;
}

.quote-block {
    margin: 45px 0;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #333;
}

.quote-block blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
}

.quote-block cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.service-inline {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-card p {
    margin-bottom: 15px;
    text-align: left;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 15px;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.select-service-btn:hover {
    background-color: #1a1a1a;
}

.story-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.submit-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 3px solid #999;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    text-align: left;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.text-link {
    color: #2c2c2c;
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #000000;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-note {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

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

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

.contact-details h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-details h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.contact-details p {
    margin-bottom: 15px;
    text-align: left;
}

.narrative-section ul {
    margin: 20px 0 28px 30px;
    line-height: 1.8;
}

.narrative-section ul li {
    margin-bottom: 10px;
}

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

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

    .main-heading {
        font-size: 32px;
    }

    .intro-text {
        font-size: 19px;
    }

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

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

    .quote-block {
        padding: 20px 25px;
    }

    .story-form {
        padding: 25px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }
}