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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

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

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

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #2c5f2d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 18px 48px;
    background: #fff;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: center;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.story-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.story-image-wrap {
    flex: 1;
    background: #e8f5e9;
}

.story-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.insight-section {
    padding: 100px 20px;
    background: #2c5f2d;
    color: white;
}

.insight-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-inner h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.problem-section {
    padding: 100px 20px;
    background: #fff;
}

.problem-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-content {
    flex: 1.2;
}

.problem-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.problem-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.problem-visual {
    flex: 1;
    background: #fff3e0;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-inline {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 28px;
    font-style: italic;
    color: #2c5f2d;
    line-height: 1.5;
    margin-bottom: 20px;
}

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

.benefits-reveal {
    padding: 100px 20px;
    background: #fff;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

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

.scientific-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.scientific-wrapper h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.scientific-wrapper p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.scientific-wrapper a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
}

.scientific-wrapper a:hover {
    text-decoration: underline;
}

.services-pricing {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.services-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.services-inner h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.pricing-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    border-color: #2c5f2d;
}

.pricing-card.featured {
    border-color: #2c5f2d;
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2c5f2d;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.pricing-card > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 24px;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #234d24;
    transform: scale(1.02);
}

.form-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-group input[readonly] {
    background: #f9f9f9;
    color: #666;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.trust-section {
    padding: 100px 20px;
    background: #fff;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-box p {
    font-size: 17px;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9e6;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #b8860b;
}

.disclaimer-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.references a {
    color: #81c784;
}

.references a:hover {
    color: #a5d6a7;
}

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 16px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .story-container,
    .problem-flex {
        flex-direction: column;
    }

    .insight-grid,
    .benefits-list,
    .testimonials-grid,
    .pricing-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}