       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff9f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            max-width: 1400px;
            margin: 0 auto;
            height: 80px;
        }

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

        .logo-icon {
            color: #ffb347;
            font-size: 28px;
        }

        .logo-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #5c3d00;
            letter-spacing: 0.5px;
        }

        .logo-text span {
            color: #ffb347;
        }

        /* Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #5c3d00;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 0;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu a:hover {
            color: #ffb347;
        }

        .nav-menu a.active {
            color: #ffb347;
            font-weight: 600;
        }

        .cart-icon {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff6b6b;
            color: white;
            font-size: 11px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 15px;
        }

        .btn-outline {
            background-color: transparent;
            color: #5c3d00;
            border: 2px solid #ffb347;
        }

        .btn-outline:hover {
            background-color: #ffb347;
            color: white;
        }

        .btn-primary {
            background-color: #ffb347;
            color: white;
        }

        .btn-primary:hover {
            background-color: #ff9d1c;
            transform: translateY(-2px);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #5c3d00;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 60px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1587049352851-8d4e89133924?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Smaller mobile image for better performance */
        @media (max-width: 768px) {
            .hero-background {
                background-image: url('https://images.unsplash.com/photo-1587049352851-8d4e89133924?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=60');
            }
        }

        @media (max-width: 480px) {
            .hero-background {
                background-image: url('https://images.unsplash.com/photo-1587049352851-8d4e89133924?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=50');
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(92, 61, 0, 0.7), rgba(255, 179, 71, 0.3));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            padding: 60px 20px;
            max-width: 1200px;
            width: 100%;
            animation: fadeInUp 1s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            font-family: 'Quicksand', sans-serif;
            line-height: 1.2;
        }

        .hero h1 span {
            color: #ffb347;
            display: block;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem); /* Responsive font size */
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.6;
            max-width: 800px;
            padding: 0 15px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero .btn {
            padding: clamp(12px, 3vw, 15px) clamp(25px, 4vw, 35px); /* Responsive padding */
            font-size: clamp(0.9rem, 2vw, 1.1rem); /* Responsive font size */
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            min-width: 160px;
            text-align: center;
        }

        .hero .btn-primary {
            background-color: #ffb347;
            color: white;
        }

        .hero .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero .btn-outline:hover {
            background-color: white;
            color: #5c3d00;
        }

        /* Honey Stats */
        .honey-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 900px;
            padding: 0 15px;
        }

        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 20px 15px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .stat-number {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #ffb347;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        /* Main Content */
        main {
            flex: 1;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
            color: #5c3d00;
            font-size: clamp(1.8rem, 4vw, 2.25rem);
            font-weight: 700;
        }

        /* Custom Carousel Styles */
        .honey-carousel {
            margin: 50px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .carousel-inner {
            border-radius: 15px;
        }

        .carousel-item img {
            height: 500px;
            object-fit: cover;
            width: 100%;
        }

        .carousel-caption {
            background: rgba(92, 61, 0, 0.7);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 20px;
            bottom: 20px;
            left: 10%;
            right: 10%;
            text-align: center;
        }

        .carousel-caption h5 {
            color: #ffb347;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .carousel-caption p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 179, 71, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 15px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #ffb347;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ffb347;
            border: none;
            margin: 0 5px;
        }

        .carousel-indicators button.active {
            background-color: #5c3d00;
            transform: scale(1.2);
        }

        /* Honey Grid */
        .honey-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .honey-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .honey-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .honey-img {
            height: 200px;
            background-color: #ffd89b;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 60px;
            color: #5c3d00;
        }

        .honey-info {
            padding: 20px;
        }

        .honey-name {
            font-size: 20px;
            font-weight: 600;
            color: #5c3d00;
            margin-bottom: 10px;
        }

        .honey-price {
            font-size: 22px;
            font-weight: 700;
            color: #ffb347;
            margin-bottom: 15px;
        }

        /* Footer Styles */
        footer {
            background-color: #5c3d00;
            color: #fff;
            padding: 60px 0 20px;
            margin-top: auto;
        }

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

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

        .footer-col h3 {
            font-size: clamp(1.3rem, 3vw, 1.5rem);
            margin-bottom: 20px;
            color: #ffb347;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #ffb347;
        }

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

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

        .footer-links a {
            color: #e6d5b8;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #ffb347;
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #e6d5b8;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 179, 71, 0.1);
            color: #ffb347;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #ffb347;
            color: #5c3d00;
            transform: translateY(-3px);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            outline: none;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button {
            background-color: #ffb347;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #ff9d1c;
        }

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

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            font-size: 24px;
            color: #e6d5b8;
        }

        /* Responsive Design - Enhanced */
        @media (min-width: 1400px) {
            .hero {
                height: 90vh;
                min-height: 700px;
            }
        }

        @media (min-width: 1200px) {
            .hero {
                height: 85vh;
                min-height: 650px;
            }
        }

        @media (min-width: 992px) {
            .hero {
                height: 80vh;
                min-height: 600px;
            }
            
            .nav-menu {
                gap: 20px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 991px) and (min-width: 769px) {
            .hero {
                height: 75vh;
                min-height: 550px;
            }
            
            .hero h1 span {
                display: inline;
            }
            
            .carousel-item img {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                height: 70px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                gap: 30px;
                transition: left 0.5s ease;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 18px;
                padding: 10px 20px;
            }

            .header-actions .btn {
                display: none;
            }
            
            .hero {
                height: auto;
                min-height: 500px;
                margin-bottom: 40px;
            }
            
            .hero-content {
                padding: 40px 20px;
            }
            
            .hero h1 {
                margin-bottom: 15px;
            }
            
            .hero p {
                margin-bottom: 25px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 300px;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
            }
            
            .honey-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .carousel-item img {
                height: 350px;
            }
            
            .carousel-caption {
                bottom: 10px;
                left: 5%;
                right: 5%;
                padding: 15px;
            }
            
            .carousel-caption h5 {
                font-size: 1.4rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
                margin: 0 5px;
            }
            
            .page-title {
                font-size: 28px;
            }

            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                border-radius: 30px;
                width: 100%;
            }
            
            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 30px;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size: 20px;
            }
            
            .logo-icon {
                font-size: 24px;
            }
            
            .hero {
                min-height: 450px;
                margin-bottom: 30px;
            }
            
            .hero-content {
                padding: 30px 15px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .hero-buttons {
                margin-bottom: 30px;
            }
            
            .honey-stats {
                grid-template-columns: 1fr;
                max-width: 250px;
            }
            
            .stat-item {
                padding: 15px 10px;
            }
            
            .carousel-item img {
                height: 300px;
            }
            
            .carousel-caption {
                padding: 10px;
                bottom: 5px;
            }
            
            .carousel-caption h5 {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
                margin-bottom: 10px;
                display: none;
            }
            
            .page-title {
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .honey-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-col h3 {
                font-size: 20px;
            }
        }

        @media (max-width: 400px) {
            .hero {
                min-height: 400px;
            }
            
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .hero .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                min-width: 140px;
            }
            
            .carousel-item img {
                height: 250px;
            }
            
            .carousel-caption {
                display: none;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .header-container {
                padding: 0 15px;
            }
        }

        /* Extra small devices (phones, 320px and down) */
        @media (max-width: 320px) {
            .hero {
                min-height: 350px;
            }
            
            .hero h1 {
                font-size: 1.4rem;
            }
            
            .hero p {
                font-size: 0.85rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
        }

        /* Landscape orientation for mobile */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero {
                min-height: 400px;
                height: auto;
            }
            
            .hero-content {
                padding: 30px 20px;
            }
            
            .hero h1 {
                margin-bottom: 10px;
            }
            
            .hero p {
                margin-bottom: 15px;
                max-height: 60px;
                overflow-y: auto;
            }
            
            .hero-buttons {
                margin-bottom: 20px;
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .honey-stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
            
            .stat-item {
                padding: 10px 5px;
            }
        }
             /* Additional styles for honey card carousels */
        .honey-card-carousel {
            position: relative;
            height: 220px;
            overflow: hidden;
            border-radius: 8px 8px 0 0;
        }
        
        .honey-card-carousel .carousel-inner {
            height: 100%;
        }
        
        .honey-card-carousel .carousel-item {
            height: 100%;
        }
        
        .honey-card-carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .honey-card-carousel .carousel-indicators {
            bottom: 10px;
            margin-bottom: 0;
        }
        
        .honey-card-carousel .carousel-indicators button {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 3px;
            border: none;
        }
        
        .honey-card-carousel .carousel-indicators button.active {
            background-color: #fff;
        }
        
        .honey-card-carousel .carousel-control-prev,
        .honey-card-carousel .carousel-control-next {
            width: 30px;
            height: 30px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .honey-card-carousel:hover .carousel-control-prev,
        .honey-card-carousel:hover .carousel-control-next {
            opacity: 1;
        }
        
        .honey-card-carousel .carousel-control-prev {
            left: 10px;
        }
        
        .honey-card-carousel .carousel-control-next {
            right: 10px;
        }
        
        .honey-card-carousel .carousel-control-prev-icon,
        .honey-card-carousel .carousel-control-next-icon {
            width: 15px;
            height: 15px;
        }
        
        .honey-info {
            padding: 20px;
            background: white;
        }
        
        .honey-name {
            color: #d4a017;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .honey-price {
            color: #e67e22;
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 15px;
        }
        
        .honey-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .honey-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .honey-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Health Benefits Section Styles */
        .health-benefits {
            background: linear-gradient(135deg, #fff9e6 0%, #fff3d4 100%);
            padding: 80px 20px;
            margin: 60px 0;
            border-top: 5px solid #d4a017;
            border-bottom: 5px solid #d4a017;
        }
        
        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .benefits-title {
            text-align: center;
            color: #8b5a00;
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .benefits-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .benefit-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            color: #d4a017;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .benefit-item h4 {
            color: #8b5a00;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .benefit-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .workout-tip {
            background: linear-gradient(135deg, #d4a017 0%, #f5b642 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
        }
        
        .workout-tip h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .workout-tip h3 i {
            color: #ffd166;
        }
        
        .workout-tip p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .source-info {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: rgba(212, 160, 23, 0.1);
            border-radius: 10px;
            border-left: 4px solid #d4a017;
        }
        
        .source-info p {
            color: #8b5a00;
            font-size: 1.1rem;
            margin: 0;
        }
        
        .source-info strong {
            color: #d4a017;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .honey-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .honey-card-carousel {
                height: 250px;
            }
            
            .benefits-title {
                font-size: 2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .workout-tip {
                padding: 20px;
            }
            
            .workout-tip h3 {
                font-size: 1.5rem;
            }
        }