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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    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;
    min-width: 250px;
}

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

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

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

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-minimal {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    background: #e74c3c;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.editorial-container {
    max-width: 100%;
    background: white;
}

.hero-editorial {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    font-style: italic;
}

.hero-image-editorial {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    display: block;
    border-radius: 8px;
}

.story-section {
    padding: 60px 20px;
}

.story-dark {
    background: #f8f9fa;
}

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

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

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.story-highlight {
    font-size: 22px;
    font-style: italic;
    color: #27ae60;
    padding: 20px 0;
    border-left: 4px solid #27ae60;
    padding-left: 24px;
    margin: 32px 0;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 6px;
}

.insight-box {
    background: #fff3cd;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #f39c12;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-box ul {
    list-style: none;
    padding-left: 0;
}

.insight-box li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
}

.insight-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.testimonial-inline {
    background: #e8f5e9;
    padding: 24px 32px;
    border-radius: 8px;
    margin: 32px 0;
    font-style: italic;
    border-left: 4px solid #27ae60;
}

.testimonial-inline p {
    margin: 0;
    color: #2c3e50;
}

.inline-cta {
    text-align: center;
    padding: 40px 20px;
}

.cta-inline-link {
    font-size: 20px;
    color: #3498db;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-inline-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.visual-break {
    width: 100%;
    margin: 60px 0;
}

.visual-break img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cta-editorial-block {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-editorial-block h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-editorial-block p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-editorial-btn {
    display: inline-block;
    background: white;
    color: #11998e;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-editorial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.compare-item {
    background: white;
    padding: 28px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.compare-item:hover {
    border-color: #27ae60;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.compare-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.compare-item p {
    margin-bottom: 12px;
    font-size: 16px;
}

.health-benefits {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.health-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

.health-benefits li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
}

.reveal-section {
    background: #fafafa;
    padding: 80px 20px;
}

.reveal-intro {
    font-size: 19px;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
}

.services-editorial {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-editorial {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-editorial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-service {
    border: 3px solid #f39c12;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    padding: 32px 32px 20px;
}

.service-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 17px;
    color: #666;
    font-style: italic;
}

.service-card-editorial img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-details {
    padding: 32px;
}

.service-details > p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.6;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.price-reveal {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    margin: 24px 0;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    display: block;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    display: block;
}

.select-service-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    background: white;
    padding: 80px 20px;
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: #666;
}

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

.form-notice {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-submit-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.trust-item {
    padding: 24px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.final-cta-editorial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.final-cta-editorial h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-editorial p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-final-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 20px 56px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}

.cta-final-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: left;
}

.thanks-details p {
    margin: 8px 0;
    font-size: 16px;
}

.thanks-details strong {
    color: #2c3e50;
}

.thanks-cta {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.services-hero {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-hero {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #8e44ad;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    margin: 4px 0;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: white;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-container p,
.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

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

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

    .story-section p {
        font-size: 17px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .comparison-table {
        flex-direction: column;
    }

    .service-header h3 {
        font-size: 24px;
    }

    .price {
        font-size: 30px;
    }

    .cta-editorial-block h2,
    .final-cta-editorial h2 {
        font-size: 30px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .thanks-container {
        margin: 40px 20px;
        padding: 40px 24px;
    }

    .thanks-container h1 {
        font-size: 28px;
    }
}