* {
    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;
    border-top: 1px solid #333;
}

.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: 250px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #4a4a4a;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-centered {
    text-align: center;
    padding: 60px 40px;
}

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

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
    font-style: italic;
}

.story-intro,
.problem-section,
.insight-reveal,
.trust-building,
.testimonials-inline,
.services-reveal,
.form-section,
.final-cta,
.disclaimer-section {
    padding: 50px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
}

.text-column-narrow {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.drop-cap::first-letter {
    font-size: 64px;
    line-height: 1;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    font-weight: bold;
    color: #1a1a1a;
}

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

.text-column h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.text-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.text-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.text-link:hover {
    opacity: 0.7;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 2px;
    background-color: #efefef;
    object-fit: cover;
}

.editorial-quote {
    border-left: 3px solid #1a1a1a;
    padding-left: 25px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    color: #3a3a3a;
}

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

.testimonial-card {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 3px solid #1a1a1a;
}

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

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

.service-editorial {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2a2a2a;
}

.service-selected {
    background-color: #e8f4e8;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-left: 3px solid #4a7c4a;
    display: none;
}

.service-selected.show {
    display: block;
}

.service-selected strong {
    font-weight: 600;
}

.editorial-form {
    margin-top: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 12px 35px;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.closing-text {
    font-size: 20px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-container .btn-secondary {
    margin-top: 30px;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.page-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-container ul,
.page-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #1a1a1a;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-info .email-text {
    color: #4a4a4a;
    font-weight: normal;
}

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

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

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

    .hero-lead {
        font-size: 18px;
    }

    .text-column h2 {
        font-size: 28px;
    }

    .story-intro,
    .problem-section,
    .insight-reveal,
    .trust-building,
    .testimonials-inline,
    .services-reveal,
    .form-section,
    .final-cta {
        padding: 40px 25px;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
