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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.editorial-layout {
    background-color: #fafaf8;
}

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

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

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 600px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.intro-narrow {
    padding: 60px 60px 40px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
}

.inline-cta-box {
    background-color: #f4f4f0;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #4a7c59;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.btn-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #3d6649;
}

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

.story-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.image-inline-right {
    float: right;
    width: 45%;
    margin: 0 0 30px 30px;
    background-color: #e8e8e8;
}

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

.image-inline-left {
    float: left;
    width: 45%;
    margin: 0 30px 30px 0;
    background-color: #e8e8e8;
}

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

.insight-block {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px;
    margin: 60px 0;
}

.insight-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffffff;
}

.insight-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.insight-list {
    list-style: none;
    margin: 30px 0;
}

.insight-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
}

.insight-footer {
    font-style: italic;
    margin-top: 30px;
    color: #b8c5d0;
}

.testimonial-inline {
    padding: 60px;
    background-color: #f9f9f7;
    margin: 60px 0;
}

.testimonial-inline blockquote {
    border-left: 4px solid #4a7c59;
    padding-left: 30px;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.technique-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.technique-card {
    padding: 25px;
    background-color: #f4f4f0;
    border-left: 3px solid #4a7c59;
}

.technique-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.technique-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.cta-section-centered {
    padding: 80px 60px;
    background-color: #fafaf8;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.service-selection-form {
    max-width: 100%;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    background-color: #ffffff;
}

.service-card:hover {
    border-color: #4a7c59;
    background-color: #f9f9f7;
}

.service-card input[type="radio"] {
    margin-right: 20px;
    margin-top: 5px;
    cursor: pointer;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

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

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.form-fields input {
    padding: 15px;
    border: 2px solid #e5e5e5;
    font-size: 16px;
    font-family: inherit;
}

.form-fields input:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.disclaimer-section {
    padding: 40px 60px;
    background-color: #f4f4f0;
    margin: 60px 0 0;
}

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

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 60px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

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

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

.footer-copyright {
    font-size: 14px;
    color: #888;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #b8c5d0;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.page-content ul li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f4f4f0;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #4a7c59;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
}

.contact-info .email-display {
    color: #2c2c2c;
    font-weight: 600;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text-overlay {
        position: static;
        max-width: 100%;
    }

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

    .intro-narrow,
    .story-section,
    .insight-block,
    .testimonial-inline,
    .cta-section-centered,
    .disclaimer-section,
    .footer-editorial {
        padding-left: 30px;
        padding-right: 30px;
    }

    .image-inline-right,
    .image-inline-left {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

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

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

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

.thanks-page p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-page .selected-service {
    font-weight: 700;
    color: #4a7c59;
}

.thanks-page .btn-back {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 35px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-page .btn-back:hover {
    background-color: #3d6649;
}
