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

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-banner {
    background: #eff6ff;
    padding: 8px 0;
    text-align: center;
}

.header-banner p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    background: linear-gradient(135deg, #2563eb, #059669);
    padding: 8px;
    border-radius: 8px;
    font-size: 24px;
    transition: transform 0.2s;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.logo-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav a:hover,
.nav a.active {
    background: #2563eb;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    padding: 64px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h6 {
    font-size: 18px;
    color: #2563eb;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    line-height: 1.3;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #059669);
    margin: 0 auto;
    border-radius: 2px;
}

.divider-small {
    width: 60px;
    height: 3px;
    background: #2563eb;
    margin: 16px 0;
    border-radius: 2px;
}

/* Main Content Section */
.main-content {
    background: #2563eb;
    padding: 64px 0;
}

.main-image {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-bottom: 32px;
}

.content-box {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

/* Understanding Section */
.understanding {
    padding: 64px 0;
    background: white;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.text-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.3;
}

.image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info-box {
    padding: 32px;
    border-radius: 12px;
}

.info-box.gray {
    background: #f8fafc;
}

.info-box.white {
    background: white;
    border: 1px solid #e5e7eb;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* Nutrition Section */
.nutrition {
    padding: 64px 0;
    background: white;
}

.nutrition h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
}

.nutrition-image {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto 32px;
    display: block;
}

.nutrition-content {
    max-width: 800px;
    margin: 0 auto;
}

.nutrition-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 32px;
}

.food-list {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.food-list h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 16px;
}

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

.food-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #374151;
}

.food-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Lifestyle Section */
.lifestyle {
    padding: 64px 0;
    background: #f8fafc;
}

.lifestyle h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.lifestyle-text h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.4;
}

.lifestyle-text p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.lifestyle-tips {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.lifestyle-tips h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 20px;
}

.lifestyle-tips ul {
    list-style: none;
    padding: 0;
}

.lifestyle-tips li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.lifestyle-tips li:last-child {
    border-bottom: none;
}

.lifestyle-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Product Section */
.product {
    padding: 64px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.product-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-box {
    padding: 24px;
    border-radius: 12px;
}

.benefit-box.blue {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
}

.benefit-box.green {
    background: #ecfdf5;
    border-left: 4px solid #059669;
}

.benefit-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-box.blue h4 {
    color: #2563eb;
}

.benefit-box.green h4 {
    color: #059669;
}

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

.product-image {
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #bfdbfe, #bbf7d0);
    border-radius: 12px;
    transform: rotate(3deg);
    z-index: -1;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
}

/* Order Section */
.order {
    padding: 64px 0;
    background: #2563eb;
}

.order-box {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.order-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.order-box h5 {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.5;
}

.order-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.order-form input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.order-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* About Page Styles */
.about-hero {
    background: #2563eb;
    padding: 64px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero .divider {
    background: white;
}

.about-content {
    padding: 64px 0;
    background: white;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 48px;
}

.company-values {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 48px;
}

.company-values ul {
    list-style: none;
    padding: 0;
}

.company-values li {
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.company-values li:last-child {
    border-bottom: none;
}

.note-section {
    background: #fef3c7;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.note-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.note-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* Contact Page Styles */
.contact-section {
    padding: 64px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.contact-details {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
}

.contact-item h6 {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.contact-form-section {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    font-size: 16px;
    background: transparent;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #2563eb;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #059669);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 64px 0;
    background: #f8fafc;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 24px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: #6b7280;
}

.faq-answer {
    padding: 24px;
    background: white;
    display: none;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* Policy Pages */
.policy-section {
    padding: 64px 0;
    background: white;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.policy-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 32px 0 16px 0;
}

.policy-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.policy-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-text li {
    margin-bottom: 8px;
    color: #374151;
}

.contact-box {
    background: #fef3c7;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-top: 32px;
}

.contact-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.contact-box p {
    margin-bottom: 16px;
}

.contact-box .contact-details p {
    margin-bottom: 4px;
    color: #374151;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #2563eb, #059669);
    padding: 8px;
    border-radius: 8px;
    font-size: 20px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 14px;
    color: #9ca3af;
}

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

.contact-info p {
    margin-bottom: 12px;
    color: #d1d5db;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #60a5fa;
}

.disclaimer {
    border-top: 1px solid #374151;
    padding: 32px 0;
    background: #111827;
    border-radius: 12px;
    margin-top: 32px;
    padding: 24px;
}

.disclaimer h5 {
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 12px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav ul {
        gap: 16px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .section-grid,
    .lifestyle-grid,
    .product-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-box,
    .policy-content,
    .contact-form-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .main-content,
    .understanding,
    .nutrition,
    .lifestyle,
    .product,
    .order,
    .about-content,
    .contact-section,
    .faq-section,
    .policy-section {
        padding: 48px 0;
    }
}