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

:root {
    /* Colors */
    --primary-color: #2d5f5d;
    --primary-light: #4a8886;
    --primary-dark: #1a3635;
    --secondary-color: #d4a574;
    --secondary-light: #e8c9a0;
    --accent-color: #c97d60;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --gray: #9ca3af;
    --dark-gray: #4b5563;
    --black: #1f2937;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d5f5d 0%, #4a8886 100%);
    --gradient-secondary: linear-gradient(135deg, #d4a574 0%, #e8c9a0 100%);
    --gradient-accent: linear-gradient(135deg, #c97d60 0%, #e8a587 100%);
    --gradient-hero: linear-gradient(135deg, #1a3635 0%, #2d5f5d 50%, #4a8886 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
  padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* ===================================
   Typography
   =================================== */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

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

.medical-advice-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.medical-advice-note strong {
    color: #f57c00;
    font-weight: 600;
}

/* ===================================
   Health Warning Banner
   =================================== */
.health-warning-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    z-index: 1001;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.health-warning-banner p {
    margin: 0;
    font-size: 13px;
    color: var(--black);
    text-align: center;
    line-height: 1.4;
}

.health-warning-banner strong {
    font-weight: 700;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition-base);
    border-radius: 2px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    margin-bottom: 24px;
}

.title-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #e8c9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.product-showcase {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.price-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    transform: rotate(5deg);
    animation: pulse 2s infinite;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ===================================
   Buttons
   =================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.cta-button.primary {
    background: var(--gradient-secondary);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
}

.button-arrow {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: transform var(--transition-base);
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.age-disclaimer {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
    font-size: 14px;
    line-height: 1.6;
}

.age-disclaimer strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

/* ===================================
   Pain Points Section
   =================================== */
.pain-points {
    background: var(--light-gray);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.symptom-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.symptom-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.symptom-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.symptom-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.symptom-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.card-icon.gradient-1 {
    background: var(--gradient-primary);
}

.card-icon.gradient-2 {
    background: var(--gradient-secondary);
}

.card-icon.gradient-3 {
    background: var(--gradient-accent);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.benefit-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===================================
   Composition Section
   =================================== */
.composition-section {
    background: var(--light-gray);
}

.composition-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.composition-image {
    position: relative;
}

.composition-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.composition-text {
    padding: 20px 0;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-30px);
}

.ingredient-item.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease-out;
}

.ingredient-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.ingredient-icon {
    font-size: 36px;
    min-width: 50px;
    text-align: center;
}

.ingredient-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.ingredient-info p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* ===================================
   Usage Section
   =================================== */
.usage-section {
    background: var(--white);
}

.usage-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 0 1 280px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--light-gray);
    position: relative;
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.9);
}

.step-card.animate-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s ease-out;
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.step-image {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light-gray);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--dark-gray);
}

.step-arrow {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================
   Order Section
   =================================== */
.order-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.order-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.order-image {
    position: relative;
}

.order-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.order-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: var(--black);
}

.order-header {
    text-align: center;
    margin-bottom: 32px;
}

.order-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.old-price {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.discount-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.order-form {
    margin-bottom: 32px;
}

.health-disclaimers-form {
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.health-disclaimers-form p {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 14px;
}

.health-disclaimers-form strong {
    color: #f57c00;
    font-size: 15px;
}

.health-disclaimers-form ul {
  margin: 0;
    padding-left: 20px;
}

.health-disclaimers-form ul li {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.5;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 16px;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--light-gray);
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--dark-gray);
}

.step-icon {
    font-size: 24px;
}

/* ===================================
   Disclaimer Section
   =================================== */
.disclaimer-section {
    background: #fff3cd;
    padding: 60px 0;
}

.disclaimer-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 3px solid #ffc107;
    box-shadow: var(--shadow-lg);
}

.disclaimer-content > h3 {
    font-size: 24px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 32px;
    text-align: center;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.disclaimer-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.disclaimer-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.disclaimer-item p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.main-disclaimer {
    background: #fff8e1;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 2px solid #ffc107;
    margin-top: 24px;
}

.main-disclaimer p {
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.main-disclaimer strong {
    color: var(--primary-dark);
    font-size: 14px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  margin-bottom: 40px;
}

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(5deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.05);
    }
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-content,
    .composition-content,
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .product-showcase {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .composition-text {
        order: -1;
    }
}

@media (max-width: 768px) {
    .health-warning-banner p {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .navbar {
        top: 36px;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .usage-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-grid,
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .order-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-content {
        padding: 24px;
    }
    
    .disclaimer-content > h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .health-warning-banner {
        padding: 6px 0;
    }
    
    .health-warning-banner p {
        font-size: 11px;
    }
    
    .navbar {
        top: 32px;
        padding: 12px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-showcase {
        padding: 20px;
    }
    
    .price-badge {
        right: 0;
        top: -15px;
        padding: 15px 20px;
    }
    
    .price-amount {
        font-size: 22px;
    }
    
    .order-form-wrapper {
        padding: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .age-disclaimer {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .health-disclaimers-form {
        padding: 12px 16px;
    }
    
    .health-disclaimers-form ul li {
        font-size: 12px;
    }
    
    .disclaimer-content {
        padding: 20px;
    }
    
    .disclaimer-content > h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .disclaimer-item {
        padding: 16px;
    }
    
    .main-disclaimer {
        padding: 16px;
    }
    
    .medical-advice-note {
        padding: 12px 16px;
        font-size: 12px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .mobile-menu-btn,
    .cta-button,
    .order-section {
        display: none;
    }
}
