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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #4a7c59;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #3a6248;
}

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

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

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #888888;
    font-style: italic;
    padding: 4px 10px;
    border-left: 2px solid #e5e5e5;
}

.editorial-main {
    background-color: #fafafa;
}

.story-article {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #2a3a44;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-title {
    position: relative;
    z-index: 2;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero-subtitle {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #e8e8e8;
    text-align: center;
    font-weight: 300;
    font-style: italic;
    max-width: 700px;
    padding: 0 20px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-text {
    font-size: 21px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 36px;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.content-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image-block {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    font-style: italic;
    color: #666666;
    background-color: #f5f5f5;
    margin: 0;
}

.story-quote {
    margin: 40px 0;
    padding: 24px 32px;
    border-left: 4px solid #4a7c59;
    background-color: #f9f9f9;
    font-size: 20px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.7;
}

.cta-inline {
    margin: 56px 0;
    padding: 40px 36px;
    background-color: #e8f2ec;
    border-radius: 4px;
}

.cta-inline h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 26px;
    color: #1a1a1a;
}

.cta-inline p {
    margin-bottom: 24px;
    font-size: 17px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-right: 12px;
    margin-top: 8px;
}

.btn-primary:hover {
    background-color: #3a6248;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a7c59;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #4a7c59;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 12px;
    margin-top: 8px;
}

.btn-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.services-editorial {
    margin-top: 48px;
}

.service-story {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-story h3 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 20px;
}

.service-detail {
    font-size: 16px;
    color: #555555;
    font-style: italic;
    margin-top: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-top: 20px;
}

.service-story ul {
    margin: 20px 0 20px 24px;
}

.service-story li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-block {
    margin: 56px 0;
}

.testimonial {
    margin-bottom: 40px;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 3px solid #d4d4d4;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
    font-style: normal;
}

.form-section {
    margin-top: 56px;
    padding: 48px 40px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 24px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.disclaimer-section {
    margin-top: 56px;
    padding: 28px 32px;
    background-color: #fff8e8;
    border-left: 4px solid #d4a259;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.closing-text {
    margin-top: 48px;
    font-size: 19px;
    font-style: italic;
    color: #555555;
}

.footer-editorial {
    background-color: #2a2a2a;
    color: #d4d4d4;
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid #4a4a4a;
}

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

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #b4b4b4;
}

.contact-info-section {
    margin-top: 40px;
    padding: 36px 32px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.contact-info-section h2 {
    margin-top: 32px;
    font-size: 24px;
}

.contact-info-section h2:first-child {
    margin-top: 0;
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    color: #666666;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.legal-content ul {
    margin: 16px 0 24px 28px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

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

.thanks-details {
    margin-top: 40px;
}

.thanks-details ul {
    margin: 20px 0 20px 28px;
}

.thanks-details li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

#service-confirmation {
    font-size: 18px;
    font-weight: 600;
    color: #4a7c59;
    margin: 24px 0;
    padding: 16px;
    background-color: #e8f2ec;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .nav-editorial {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .ad-disclosure {
        border-left: none;
        border-top: 2px solid #e5e5e5;
        padding: 8px 0 0 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .content-narrow {
        padding: 48px 24px;
    }

    .content-narrow h1 {
        font-size: 32px;
    }

    .content-narrow h2 {
        font-size: 26px;
        margin-top: 40px;
    }

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

    .content-narrow p {
        font-size: 17px;
    }

    .story-quote {
        padding: 20px 24px;
        font-size: 18px;
    }

    .form-section {
        padding: 32px 24px;
    }

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

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