/* assets/css/style.css */
:root {
    --primary-green: #2e7d32;
    --primary-green-light: #4caf50;
    --primary-green-dark: #1b5e20;
    --primary-yellow: #ffeb3b;
    --primary-yellow-light: #fff176;
    --primary-yellow-dark: #fbc02d;
    --gradient-green-yellow: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
    --gradient-mixed: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #fff;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Health colors */
    --respiratory-color: #42a5f5;
    --mental-color: #ab47bc;
    --immunity-color: #66bb6a;
    --sleep-color: #5c6bc0;
    --skin-color: #ec407a;
    --productivity-color: #ffa726;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-green);
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-green-yellow);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-green);
}

/* Top Bar */
.top-bar {
    background: var(--primary-green-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-info span {
    margin-right: 20px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--primary-yellow);
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 80px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    color: var(--dark-text);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: var(--gradient-green-yellow);
    border-radius: 3px;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
}

.navbar-nav .dropdown-item:hover {
    background: var(--primary-green);
    color: white;
}

.btn-quote {
    background: var(--gradient-green-yellow);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.hero-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: white;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-green-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.4;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-green-yellow);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Custom */
.card-custom {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: none;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #222;
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    max-height: 90px;
}

.footer-desc {
    margin: 20px 0;
    color: #aaa;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-green-yellow);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.product-features li {
    margin-bottom: 8px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}



/* Compact Contact Page Styles */
.page-banner {
    padding: 60px 0 40px;
}

.section {
    padding: 40px 0;
}

.section.pt-0 {
    padding-top: 0;
}

.section.pt-4 {
    padding-top: 40px;
}

.section.pt-5 {
    padding-top: 60px;
}

.section.pb-4 {
    padding-bottom: 40px;
}

.section.pb-5 {
    padding-bottom: 60px;
}

.section.py-4 {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Compact Card Styles */
.card-custom {
    padding: 20px;
}

.card-custom.p-3 {
    padding: 15px;
}

.card-custom.p-4 {
    padding: 20px;
}

/* Form Compact Styles */
.form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control, .form-select {
    padding: 10px 12px;
    font-size: 0.9rem;
}

.btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Accordion Compact */
.accordion-button {
    padding: 12px 15px;
    font-size: 0.95rem;
}

.accordion-body {
    padding: 15px;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0 30px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section.pt-5 {
        padding-top: 40px;
    }
    
    .card-custom {
        padding: 15px;
    }
}


/* Corporate Gifting Styles */
.process-step {
    width: 80px;
    height: 80px;
    background: var(--gradient-green-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.table th {
    border: none;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
}

/* Product Card Enhancements for Gifting */
.product-card {
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Table */
.table-responsive {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Video & Certification Section Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.certification-badge {
    width: 120px;
    height: 120px;
    background: var(--gradient-green-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.certification-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(46, 125, 50, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certification-badge {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }
}

/* Fix for double bullets in footer links */
.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
    position: relative;
}

.footer-links li::before {
    display: none; /* Remove default bullet */
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #aaa;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-links i {
    color: var(--primary-green);
    margin-right: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Alternative solution if the above doesn't work */
.footer-widget ul {
    list-style: none;
    padding-left: 0;
}

.footer-widget ul li {
    list-style: none;
}

.footer-widget ul li::before {
    content: none;
}


/* Certificate Thumbnail Styles */
.certificate-thumbnail {
    position: relative;
    max-width: 150px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

.certificate-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.certificate-thumbnail:hover .certificate-overlay {
    opacity: 1;
}

.certificate-thumbnail:hover .certificate-img {
    transform: scale(1.05);
}

.certificate-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.certificate-overlay span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Lightbox Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-body {
    background: #f8f9fa;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certificate-thumbnail {
        max-width: 250px;
    }
    
    .modal-dialog {
        margin: 20px;
    }
}

@media (max-width: 576px) {
    .certificate-thumbnail {
        max-width: 200px;
    }
    
    .certificate-overlay i {
        font-size: 1.5rem;
    }
    
    .certificate-overlay span {
        font-size: 0.8rem;
    }
}

/* ================================================
   NEW HEALTH-FOCUSED GIFTING STYLES
   ================================================ */

/* Health Slogan Banner */
.health-slogan-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff9c4 100%);
    padding: 50px 0;
    margin-bottom: 0;
    border-bottom: 3px solid var(--primary-green);
}

.slogan-wrapper {
    padding: 20px;
}

.main-slogan {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
}

.sub-slogan {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
}

.slogan-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.slogan-card {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.slogan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slogan-card i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.slogan-card span {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Plant Health Section */
.plant-health-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f1f8e9 100%);
}

.health-motto {
    background: white;
    padding: 25px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 30px auto;
    max-width: 800px;
    position: relative;
}

.health-motto p {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-style: italic;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.health-motto i {
    color: var(--primary-yellow-dark);
    font-size: 1.5rem;
    vertical-align: middle;
}

/* Health Plant Cards */
.health-plant-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 5px solid var(--primary-green);
}

.health-plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.health-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.health-icon.respiratory {
    background: linear-gradient(135deg, var(--respiratory-color) 0%, #1976d2 100%);
}

.health-icon.mental {
    background: linear-gradient(135deg, var(--mental-color) 0%, #7b1fa2 100%);
}

.health-icon.immunity {
    background: linear-gradient(135deg, var(--immunity-color) 0%, #388e3c 100%);
}

.health-icon.sleep {
    background: linear-gradient(135deg, var(--sleep-color) 0%, #3949ab 100%);
}

.health-icon.skin {
    background: linear-gradient(135deg, var(--skin-color) 0%, #c2185b 100%);
}

.health-icon.productivity {
    background: linear-gradient(135deg, var(--productivity-color) 0%, #f57c00 100%);
}

.health-plant-card h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.health-condition {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.plant-recommendations h5 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.plant-recommendations ul {
    list-style: none;
    padding: 0;
}

.plant-recommendations li {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    transition: var(--transition);
}

.plant-recommendations li:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.plant-recommendations strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.plant-recommendations span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.health-benefit-badge {
    background: var(--gradient-green-yellow);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.health-benefit-badge.mental-badge {
    background: linear-gradient(135deg, var(--mental-color) 0%, #7b1fa2 100%);
}

.health-benefit-badge.immunity-badge {
    background: linear-gradient(135deg, var(--immunity-color) 0%, #388e3c 100%);
}

.health-benefit-badge.sleep-badge {
    background: linear-gradient(135deg, var(--sleep-color) 0%, #3949ab 100%);
}

.health-benefit-badge.skin-badge {
    background: linear-gradient(135deg, var(--skin-color) 0%, #c2185b 100%);
}

.health-benefit-badge.productivity-badge {
    background: linear-gradient(135deg, var(--productivity-color) 0%, #f57c00 100%);
}

.health-benefit-badge i {
    margin-right: 8px;
}

/* Science Benefits Cards */
.science-benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-green);
}

.science-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.science-benefit-card h5 {
    color: var(--dark-text);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.science-benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.source {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Health Sections */
@media (max-width: 992px) {
    .main-slogan {
        font-size: 2rem;
    }
    
    .sub-slogan {
        font-size: 1.1rem;
    }
    
    .health-plant-card {
        margin-bottom: 30px;
    }
    
    .benefit-stat {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-slogan {
        font-size: 1.6rem;
    }
    
    .sub-slogan {
        font-size: 1rem;
    }
    
    .slogan-cards {
        gap: 10px;
    }
    
    .slogan-card {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .slogan-card i {
        font-size: 1.2rem;
    }
    
    .health-motto p {
        font-size: 1.1rem;
    }
    
    .health-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-stat {
        font-size: 2.5rem;
    }
    
    .health-slogan-banner {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .main-slogan {
        font-size: 1.4rem;
    }
    
    .slogan-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .slogan-card {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .health-plant-card {
        padding: 20px;
    }
    
    .plant-recommendations li {
        padding: 10px;
    }
}
