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

:root {
    --primary-color: #2c7a4f;
    --secondary-color: #4ade80;
    --accent-color: #f59e0b;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --pink: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-accept {
    background: var(--gradient-green);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
    transition: all 0.3s;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(74, 222, 128, 0.1);
}

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

.logo {
    font-size: 26px;
    font-weight: bold;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-green);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.disclaimer-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-mockup {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.bottle {
    width: 120px;
    height: 280px;
    background: white;
    border-radius: 10px;
    position: relative;
}

.bottle::before {
    content: 'HepatoBalance';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

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

section h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Product */
.about-product {
    background: var(--bg-light);
}

.product-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

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

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.important-note {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 30px;
    border-radius: 5px;
}

.important-note h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.important-note ul {
    margin: 20px 0;
    padding-left: 20px;
}

.important-note li {
    margin-bottom: 10px;
}

.emphasis {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Composition */
.composition {
    background: var(--bg-white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ingredient-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-green);
    transition: height 0.3s;
}

.ingredient-card:nth-child(1)::before { background: var(--gradient-1); }
.ingredient-card:nth-child(2)::before { background: var(--gradient-3); }
.ingredient-card:nth-child(3)::before { background: var(--gradient-2); }
.ingredient-card:nth-child(4)::before { background: var(--gradient-4); }

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.ingredient-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 1;
}

.ingredient-card:nth-child(1) .ingredient-icon {
    background: var(--gradient-1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.ingredient-card:nth-child(2) .ingredient-icon {
    background: var(--gradient-3);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.ingredient-card:nth-child(3) .ingredient-icon {
    background: var(--gradient-2);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
}

.ingredient-card:nth-child(4) .ingredient-icon {
    background: var(--gradient-4);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.4);
}

.ingredient-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.dosage {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.nutrition-table {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nutrition-table h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

thead {
    background: var(--primary-color);
    color: white;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background: var(--bg-light);
}

.table-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* How to Use */
.how-to-use {
    background: var(--bg-light);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(74, 222, 128, 0.6); }
}

.usage-step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.warnings {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--danger-color);
}

.warnings h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.warnings ul {
    padding-left: 20px;
}

.warnings li {
    margin-bottom: 12px;
}

/* Suitability */
.suitability {
    background: var(--bg-white);
}

.suitability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.suit-box {
    padding: 40px;
    border-radius: 10px;
}

.suitable {
    background: #e8f5e9;
    border-left: 4px solid var(--success-color);
}

.not-suitable {
    background: #ffebee;
    border-left: 4px solid var(--danger-color);
}

.suit-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.suit-box ul {
    padding-left: 20px;
}

.suit-box li {
    margin-bottom: 12px;
}

.suitability-note {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
}

/* Reviews */
.reviews {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-green);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.review-stars {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.review-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.reviews-disclaimer {
    background: #fff3cd;
    padding: 25px;
    border-radius: 5px;
    border-left: 4px solid var(--warning-color);
}

.reviews-disclaimer p {
    margin: 0;
}

/* FAQ */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-dark);
}

.faq-item strong {
    color: var(--danger-color);
}

/* Trust */
.trust {
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.trust-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-item h3 i {
    font-size: 24px;
    color: var(--secondary-color);
}

/* Delivery */
.delivery {
    background: var(--bg-white);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.delivery-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--secondary-color);
}

.delivery-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.delivery-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.delivery-box h3 i {
    font-size: 28px;
    color: var(--secondary-color);
}

.price {
    font-size: 48px;
    font-weight: bold;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
}

.price-note {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price-includes {
    font-size: 14px;
    color: var(--text-dark);
}

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

.delivery-box li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.delivery-box li:last-child {
    border-bottom: none;
}

.shipping-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Order Form */
.order-form {
    background: var(--gradient-green);
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.order-form::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-form-content {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary-color);
}

.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .product-info,
    .ingredients-grid,
    .usage-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-grid,
    .order-form-grid {
        grid-template-columns: 1fr;
    }
    
    .order-product-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .product-mockup {
        width: 200px;
        height: 300px;
    }
    
    .bottle {
        width: 80px;
        height: 200px;
    }
    
    .product-info,
    .ingredients-grid,
    .usage-grid,
    .suitability-grid,
    .reviews-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .nutrition-table {
        padding: 25px;
        overflow-x: auto;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px 8px;
    }
    
    .info-card,
    .ingredient-card,
    .delivery-box,
    .trust-item {
        padding: 25px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .product-mockup {
        width: 180px;
        height: 250px;
    }
    
    .bottle {
        width: 70px;
        height: 180px;
    }
    
    .bottle::before {
        font-size: 14px;
    }
    
    nav {
        gap: 10px;
    }
    
    nav a {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .order-form-content,
    .info-card,
    .ingredient-card,
    .delivery-box,
    .nutrition-table {
        padding: 20px;
    }
    
    .ingredient-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .trust-item h3,
    .delivery-box h3 {
        font-size: 18px;
    }
    
    table {
        font-size: 12px;
    }
    
    th, td {
        padding: 8px 5px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-disclaimer {
        padding: 20px;
        font-size: 13px;
    }
}
