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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

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

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

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

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

.nav-links a:hover {
    color: #2980b9;
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

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

.hero-subtext {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    margin-bottom: 15px;
    background-color: #e8edf2;
    border-radius: 4px;
    overflow: hidden;
}

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

.story-intro,
.problem-amplification,
.solution-intro,
.transformation-story,
.trust-building,
.scientific-backing,
.testimonials-inline,
.benefits-reveal,
.services-section,
.form-section,
.disclaimer-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-style: italic;
}

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

.inline-image-block {
    margin: 40px 0;
    background-color: #f4f6f8;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

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

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

h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.story-quote {
    border-left: 4px solid #2980b9;
    padding-left: 25px;
    margin: 35px 0;
    font-size: 22px;
    font-style: italic;
    color: #34495e;
}

.insight-box {
    background-color: #ecf8f3;
    border-left: 5px solid #27ae60;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.insight-heading {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 10px;
}

.insight-box p:last-child {
    margin-bottom: 0;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.result-item {
    background-color: #fff;
    padding: 20px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.result-metric {
    font-size: 36px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 16px;
    color: #555;
}

.comparison-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.before-block,
.after-block {
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.before-block h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.after-block h3 {
    color: #27ae60;
    margin-bottom: 15px;
}

.before-block ul,
.after-block ul {
    list-style-position: inside;
    color: #555;
}

.before-block li,
.after-block li {
    margin-bottom: 10px;
    font-size: 16px;
}

.citation {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #2980b9;
}

.citation:hover {
    color: #1f618d;
    border-bottom-style: solid;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid #9b59b6;
    border-radius: 4px;
}

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

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 0;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8edf2;
}

.benefit-content h3 {
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 0;
}

.cta-editorial {
    margin: 50px 0;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 6px;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-box p {
    color: #f0f0f0;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.services-section {
    margin-top: 60px;
}

.services-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.service-card.featured {
    border-color: #2980b9;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f8ff 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.service-select-btn {
    width: 100%;
    padding: 15px;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: #1f618d;
    transform: translateY(-2px);
}

.form-section {
    background-color: #f4f6f8;
    padding: 50px 30px;
    border-radius: 6px;
    margin-top: 60px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.selected-service-display {
    background-color: #d5f4e6;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
}

.selected-service-display p {
    margin: 0;
    color: #27ae60;
    font-weight: 600;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin-top: 60px;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 4px;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 20px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #856404;
    margin-bottom: 0;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.references {
    font-size: 13px;
}

.reference-item {
    margin-bottom: 10px;
    line-height: 1.5;
}

.reference-item a {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

    h2 {
        font-size: 26px;
    }

    .editorial-container p,
    .testimonial-text {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

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