/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3,
.col-md-4,
.col-md-6 {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .align-center { align-items: center; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d5016;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #9fdf6f;
    text-decoration: underline;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a7c1e;
    border-bottom-color: #4a7c1e;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5016;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c1e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

/* Page Header */
.page-header {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid #4a7c1e;
}

.page-header h1 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 10px;
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.bg-light {
    background: #f8f9fa;
}

.text-center {
    text-align: center;
}

.mb-40 {
    margin-bottom: 40px;
}

.rounded {
    border-radius: 10px;
}

.img-fluid {
    width: 100%;
    height: auto;
}

/* Nutritionist Section */
.nutritionist-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Product Section */
.product-section {
    background: #f8f9fa;
}

.product-info h3 {
    color: #2d5016;
    font-size: 24px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c1e;
    font-weight: bold;
    font-size: 20px;
}

.info-box {
    background: #fff;
    border-left: 4px solid #4a7c1e;
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
}

/* Care Section */
.care-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.care-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.care-card h3 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Benefits Section */
.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #4a7c1e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.benefit-content h3 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Warning Section */
.warning-section {
    background: #fff3cd;
    border-top: 3px solid #ff9800;
    border-bottom: 3px solid #ff9800;
}

.warning-box {
    background: #fff;
    border: 2px solid #ff9800;
    border-radius: 10px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.warning-box h2 {
    color: #d84315;
    font-size: 28px;
    margin-bottom: 20px;
}

.warning-text {
    font-size: 20px;
    color: #d84315;
    margin-bottom: 20px;
    line-height: 1.6;
}

.warning-box p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.warning-links {
    margin-top: 20px;
}

.warning-links a {
    color: #2d5016;
    text-decoration: underline;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    margin-bottom: 15px;
}

.newsletter-box p {
    margin-bottom: 30px;
    color: #666;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

@media (max-width: 767px) {
    .form-row {
        flex-direction: column;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #4a7c1e;
    color: #fff;
}

.btn-primary:hover {
    background: #2d5016;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Forms */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span a {
    color: #4a7c1e;
    text-decoration: underline;
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Contact Page */
.contact-info {
    padding: 20px 0;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #2d5016;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.mt-40 {
    margin-top: 40px;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4a7c1e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thank-you-box h1 {
    color: #2d5016;
    margin-bottom: 20px;
}

.thank-you-box .lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
}

.thank-you-image {
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.next-step-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
}

.next-step-card h3 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
}

/* About Page */
.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c1e;
    font-weight: bold;
    font-size: 20px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-card h3 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-box-large {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 30px;
    border-radius: 5px;
}

.info-box-large h2 {
    color: #d84315;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-document h2 {
    color: #2d5016;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: #2d5016;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-document p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-document ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-document ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-document a {
    color: #4a7c1e;
    text-decoration: underline;
}

.warning-box-large {
    background: #fff3cd;
    border: 3px solid #ff9800;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.warning-box-large h2 {
    color: #d84315;
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0;
}

.warning-text-large {
    font-size: 22px;
    color: #d84315;
    line-height: 1.6;
    margin-bottom: 15px;
}

.final-warning {
    background: #ffebee;
    border: 3px solid #d32f2f;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.final-warning h2 {
    color: #d32f2f;
    margin-top: 0;
}

/* Footer */
.footer {
    background: #2d5016;
    color: #fff;
    padding: 60px 0 20px;
}

.footer h3,
.footer h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

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

.footer-links a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

/* Responsive Typography */
@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .legal-document {
        padding: 30px 20px;
    }
}
