/* Product Introduction Section Styles */
.product-intro-section {
    background-color: #fff;
    width: 100%;
    padding: 5rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.product-intro-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-intro-content h2 {
    color: #e94724;
    font-size: 3rem;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.intro-flex-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.product-intro-text {
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-intro-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
}

.product-intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.product-intro-image img {
    height: auto;
    max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-intro-text {
        min-height:100px;
    }
    .product-intro-image {
        min-height: 100px;
    }
    .product-intro-section {
        padding: 100px 20px;
    }

    .product-intro-content {
        text-align: center;
        align-items: center;
    }

    .intro-flex-container {
        flex-direction: column;
    }

    .product-intro-content h2 {
        font-size: 2.8rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .product-intro-section {
        padding: 80px 20px;
    }

    .product-intro-content h2 {
        font-size: 2.4rem;
    }

    .product-intro-text p {
        font-size: 1.1rem;
    }
}

/* Product Info Styles (for RG/GL specific content) */
.product-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 25px 0 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

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

.product-info li {
    color: #4D4D4D;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.product-info li:before {
    content: "•";
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-intro-section {
        padding: 2rem;
        min-height: 70vh;
    }

    .product-intro-content {
        min-height: 400px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .product-intro-section {
        padding: 80px 0;
        min-height: 60vh;
    }

    .product-intro-content {
        min-height: 300px;
    }
}

/* Features Section Styles */
.features-section {
    padding: 5rem;
    background-color: rgba(26, 31, 37, 0.5);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    isolation: isolate;
    min-height: 800px;
}

.features-title,
.features-slider,
.feature-content {
    position: relative;
    z-index: 1;
}

.features-title {
    color: #e94724;
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 5rem;
}

.features-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 60px;
}

.features-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.feature-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
    display: none;
    transition: opacity 0.5s ease;
}

.feature-slide.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feature-content {
    background: rgba(52, 58, 64, 0.75);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    width: calc(100% - 30px);
}

.feature-content h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.feature-content ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-content li {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
    max-width: 900px;
}

.feature-content li:before {
    display: none;
}

/* Responsive styles */
@media (max-width: 1400px) {
    .features-section .container {
        max-width: 1200px;
    }
    
    .feature-content {
        padding: 80px 60px;
        min-height: 450px;
    }
    
    .feature-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .features-section {
        padding: 2rem;
    }

    .features-title {
        font-size: 3rem;
    }

    .feature-content {
        padding: 70px 50px;
        min-height: 450px;
    }

    .feature-content h3 {
        font-size: 2.4rem;
        margin-bottom: 35px;
    }

    .feature-content p, .feature-content li {
        font-size: 1.2rem;
    }

    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 100px 0;
    }

    .features-title {
        font-size: 2.4rem;
        margin-bottom: 50px;
    }

    .feature-content {
        padding: 50px 30px;
        min-height: 400px;
    }

    .feature-content h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .feature-content p, .feature-content li {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Product Highlight Section Styles */
.product-highlight-section {
    margin-top: 80px;
    background-color: #1a1f25;
    position: relative;
    width: 100%;
    padding: 5rem;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-text {
    flex: 1;
}

.highlight-text h2 {
    color: #e94724;
    font-size: 3rem;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.highlight-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-highlight-section {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .product-highlight-section {
        padding: 2rem;
        margin-top: 30px;
    }
}

/* Product Circles Styles */
.product-circles {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 0;
}

.product-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
    padding: 0;
    margin: 0;
}

.circle-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid #e94724;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-circle h3 {
    color: #1ba39c;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid #000;
    width: 150%;
    text-align: center;
    margin-left: -1px;
    margin-right: -1px;
}

.product-circle h3::after {
    display: none;
}

.product-circle p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Update responsive styles */
@media (max-width: 992px) {
    .product-circles {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .product-circle {
        flex: 0 1 calc(33.333% - 30px);
    }
}

@media (max-width: 768px) {
    .product-circle {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .product-circle {
        flex: 0 1 100%;
    }
}

/* Load More Button Styles */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn:hover {
    background: #22b8b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 201, 195, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(38, 201, 195, 0.3);
}

/* Update Red Underline Style */
.red-underline {
    width: 50rem; /* Increased from 60px */
    height: 4px; /* Slightly thicker */
    background-color: #e74c3c;
    margin-bottom: 30px;
    margin-left: 0;
}

/* Responsive adjustments for red underline */
@media (max-width: 992px) {
    .red-underline {
        width: 150px; /* Slightly shorter on smaller screens */
    }
}

@media (max-width: 576px) {
    .red-underline {
        width: 120px; /* Even shorter on mobile */
    }
}

/* Update Product Highlight Section Text Styles */
.highlight-text p {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    opacity: 0.85;  /* Adjusted opacity for lighter text */
    margin-bottom: 0;
    letter-spacing: 0.05em;  /* Added letter spacing */
    word-spacing: 0.1em;  /* Added word spacing */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 3rem;
    }
    
    .hero-content {
        padding-left: 3rem;
        padding-bottom: 8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem;
    }
    
    .hero-content {
        padding-left: 2rem;
        padding-bottom: 6rem;
    }
}

/* Slider Button Styles */
.slider-btn {
    position: absolute;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e94724;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 71, 36, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background: #d44637;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn {
    left: 0;
}

.slider-btn.next-btn {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-slider {
        padding: 0 45px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-slider {
        padding: 0 35px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
    padding: 5rem;
}

.products-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.products-title {
    color: #1a1f25;
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.products-grid {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* Featured product (left column) */
.product-card:first-child {
    width: calc(40% - 15px);  /* Adjusted width to match reference */
    min-height: 500px;
    background: #f5f5f5;
    border: none;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container for other products (right side) */
.other-products {
    width: 60%;  /* Adjusted width to match reference */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Product card styles */
.product-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Other product cards */
.other-products .product-card {
    background: #ffffff;
    border: 1px solid #eee;
    min-height: 220px;
    padding: 20px;
}

/* Product image styles */
.product-image {
    width: 100%;
    max-width: 325px;  /* Adjusted size */
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Best seller icon */
.best-seller-icon {
    position: absolute;
    top: -15px;
    left: -10px;
    width: 100px;  /* Adjusted size */
    height: 100px;
    z-index: 2;
}

/* Best seller icon styles */
.best-seller-icon-small {
    position: absolute;
    top: -26px;
    left: -10px;
    width: 100px;  /* Smaller size compared to regular best-seller-icon */
    height: 100px;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .products-grid {
        flex-direction: column;
    }
    
    .product-card:first-child,
    .other-products {
        width: 100%;
    }
    
    .other-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .other-products {
        grid-template-columns: 1fr;
    }
    
    .products-content {
        padding: 0 2rem;
    }
}

/* Health Benefits Section Styles */
.health-benefits-section {
    padding: 5rem;
    background-color: #fff;
    width: 100%;
}

.health-benefits-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-title {
    color: #e94724;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.benefits-title::after {
    content: '';
    display: block;
    width: 350px;
    height: 4px;
    background-color: #e74c3c;
    margin-top: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.benefit-card {
    border: 2px solid #26C9C3;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    background: #fff;
}

.benefit-card h3 {
    color: #1a1f25;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #333;
    font-size: 1.4rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .benefits-grid,
    .benefits-grid:has(.benefit-card:nth-child(5)) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .benefits-grid:has(.benefit-card:nth-child(5)) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Forms Section Styles */
.forms-section {
    padding: 5rem;
    width: 100%;
}

.forms-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.forms-title {
    color: #e94724;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.forms-title::after {
    content: '';
    display: block;
    width: 350px;
    height: 4px;
    background-color: #e94724;
    margin-top: 10px;
}

.forms-list {
    margin-top: 30px;
    padding: 0;
}

.forms-list li {
    color: #333;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

/* Featured product (left column) */
.products-grid > .product-card:first-child {
    width: calc(33.33% - 20px);
    min-height: 500px;
    background: #f5f5f5;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

@media (max-width: 1400px) {
    .products-grid > .product-card:first-child {
        min-height: 450px;
        padding: 10px;
    }

    .products-grid > .product-card:first-child .product-image {
        margin: 15px auto;
    }

    .products-grid > .product-card:first-child .buy-now-btn {
        margin-top: 15px;
        margin-right: 0;
    }
}

/* Container for other products (right side) */
.products-grid > .other-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: calc(66.67% - 10px);
}

/* Other product cards */
.products-grid > .other-products > .product-card {
    width: 100%;
    min-height: 220px;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    box-shadow: none;
}

.products-grid > .other-products > .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .products-grid {
        flex-direction: column;
    }
    
    .product-card:first-child {
        width: 100%;
        min-height: 350px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-card:first-child .product-image {
        max-width: 300px;
        margin: 15px auto;
    }

    .product-card:first-child .buy-now-btn {
        margin: 15px auto 0;
    }

    /* Other products adjustments */
    .other-products {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .other-products .product-card {
        min-height: 300px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .other-products .product-card .product-image {
        max-width: 220px;
        margin: 10px auto;
    }

    .product-card h3 {
        font-size: 1.2rem;
        margin: 15px 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .other-products {
        grid-template-columns: 1fr;
    }
    
    .products-content {
        padding: 0 2rem;
    }
}

/* Keep product image and title centered */
.product-card .product-image,
.product-card h3 {
    align-self: center;
    text-align: center;
    width: 100%;
    font-weight: 500;
    font-size: 1.4rem;
}

/* Adjust featured product card image */
.products-grid > .product-card > .product-image {
    max-width: 500px;
}

/* Ensure other product cards can accommodate larger images */
.products-grid > .other-products > .product-card {
    min-height: 300px;
    padding: 30px;
}

/* Style for Buy Now button */
.buy-now-btn {
    background: #e94724;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto;  /* Push button to bottom */
    margin-bottom: 20px;
    align-self: flex-end;  /* Align to right */
    margin-right: 15px;
    text-decoration: none;
    display: inline-block;
}

.buy-now-btn:hover {
    background: #d44637;
}

/* Style for Load More button */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: #26C9C3;  /* Teal color */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.load-more-btn:hover {
    background: #1fa8a3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .best-seller-icon-small {
        width: 100px;
        height: 100px;
        top: -26px;
        left: -16px;
    }
    .products-grid > .other-products {
        grid-template-columns: repeat(1, 1fr);
    }
    .products-grid > .other-products .product-card .product-image {
        max-width: 300px;
    }
    .health-benefits-section {
        padding: 2.5rem;
    }
    .forms-section {
        padding: 2.5rem;
    }
    .product-highlight-section {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .best-seller-icon-small {
        width: 110px;
        height: 110px;
        top: -29px;
        left: -16px;
    }
}

/* Update slider container height */
.features-slider {
    min-height: 500px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-content {
        padding: 70px 50px;
        min-height: 450px;
    }

    .feature-content h3 {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .feature-content li {
        font-size: 1.1rem;
        max-width: 700px;
    }
    .products-grid > .product-card:first-child {
        width: 100%;
    }
    .products-grid > .other-products {
        width: 100%;
    }
    .products-section {
        padding: 3rem;
    }
    .benefits-grid:has(.benefit-card:nth-child(5)) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-content {
        padding: 50px 30px;
        min-height: 400px;
    }

    .feature-content h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .feature-content li {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 10px;
        max-width: 100%;
    }
    .benefits-grid:has(.benefit-card:nth-child(5)) {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .features-section {
        padding: 2rem;
    }
    .features-title {
        font-size: 2.8rem;
    }
    .feature-content h3 {
        font-size: 2.3rem;
    }
    .feature-content li {
        font-size: 1.3rem;
    }
    .benefits-title {
        font-size: 2.8rem;
    }
    .benefit-card p {
        font-size: 1.3rem;
    }
    .forms-title {
        font-size: 2.8rem;
    }
    .forms-title::after {
        width: 250px;
    }
    .forms-list li {
        font-size: 1.3rem;
    }
    .highlight-text h2 {
        font-size: 2.8rem;
    }
    .highlight-text p {
        font-size: 1.3rem;
    }
    .product-intro-content h2 {
        font-size: 2.8rem;
    }

    .product-intro-text p {
        font-size: 1.3rem;
    }

    .product-intro-image img {
        max-width: 500px;
    }

    .products-grid {
        gap: 25px;
    }

    .product-card:first-child {
        width: calc(40% - 12.5px);
    }

    .other-products {
        width: 60%;
        gap: 25px;
    }

    .products-grid > .product-card:first-child .product-image {
        max-width: 320px;
    }

    .products-grid > .other-products .product-card .product-image {
        max-width: 350px;
        margin: 10px auto;
    }

    .products-grid > .other-products .product-card {
        min-height: 280px;
        padding: 0.5rem;
    }
    .products-title {
        font-size: 2.8rem;
    }
    .product-card h3 {
        font-size: 1.3rem;
    }
    .load-more-btn {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .features-title {
        font-size: 2.3rem;
    }
    .feature-content h3 {
        font-size: 2.2rem;
    }
    .feature-content li {
        font-size: 1.2rem;
    }
    .benefits-title {
        font-size: 2.3rem;
    }
    .benefit-card p {
        font-size: 1.2rem;
    }
    .forms-title {
        font-size: 2.3rem;
    }
    .forms-list li {
        font-size: 1.2rem;
    }
    .product-intro-content h2 {
        font-size: 2.3rem;
    }

    .product-intro-text p {
        font-size: 1.2rem;
    }

    .product-intro-image img {
        max-width: 400px;
    }

    .products-content {
        padding: 0 3rem;
    }

    .products-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* Featured product card adjustments */
    .product-card:first-child {
        width: 100%;
        min-height: 350px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-card:first-child .product-image {
        max-width: 300px;
        margin: 15px auto;
    }

    .product-card:first-child .buy-now-btn {
        margin: 15px auto 0;
    }

    /* Other products adjustments */
    .other-products {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .other-products .product-card {
        min-height: 300px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .other-products .product-card .product-image {
        max-width: 220px;
        margin: 10px auto;
    }

    .product-card h3 {
        font-size: 1.2rem;
        margin: 15px 0;
        text-align: center;
    }
    .products-title {
        font-size: 2.3rem;
    }
    .load-more-btn {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2.2rem;
        margin-top: 1rem;
    }
    .feature-content h3 {
        font-size: 2rem;
    }
    .feature-content li {
        font-size: 1.1rem;
    }
    .benefits-title {
        font-size: 2.2rem;
    }
    .benefit-card p {
        font-size: 1.1rem;
    }
    .forms-title {
        font-size: 2.2rem;
    }
    .forms-list li {
        font-size: 1.1rem;
    }
    .highlight-text h2 {
        font-size: 2.2rem;
    }
    .highlight-text p {
        font-size: 1.1rem;
    }
    .product-intro-section {
        padding: 4rem 2rem;
    }

    .product-intro-content h2 {
        font-size: 2.2rem;
    }

    .product-intro-text p {
        font-size: 1.1rem;
    }

    .intro-flex-container {
        flex-direction: column;
        gap: 30px;
    }

    .product-intro-image img {
        max-width: 350px;
    }

    .products-content {
        padding: 0 2rem;
    }

    .product-card:first-child {
        min-height: 350px;
    }

    .product-card {
        padding: 25px;
    }

    .product-image {
        max-width: 200px;
    }

    .buy-now-btn {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
}

@media (max-width: 576px) {
    .product-intro-section {
        padding: 3rem 1.5rem;
    }

    .product-intro-content h2 {
        font-size: 2rem;
    }

    .product-intro-text p {
        font-size: 1.1rem;
    }

    .product-intro-image img {
        max-width: 350px;
    }

    .products-content {
        padding: 2rem;
    }

    .other-products {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card:first-child {
        min-height: 300px;
        padding: 20px;
    }

    .product-card {
        padding: 20px;
        min-height: 250px;
    }

    .product-image {
        max-width: 180px;
    }

    .product-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .highlight-text h2 {
        font-size: 2.3rem;
    }
    .highlight-text p {
        font-size: 1.2rem;
    }
    .products-section {
        padding: 3rem;
    }

    .products-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .product-card:first-child h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .other-products .product-card h3 {
        font-size: 1.2rem;
        margin: 12px 0;
    }

    .buy-now-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .load-more-btn {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 2.2rem;
    }
    .highlight-text h2 {
        font-size: 2.2rem;
    }
    .highlight-text p {
        font-size: 1.1rem;
    }
    .products-section {
        padding: 2.5rem;
    }

    .products-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .product-card:first-child h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .other-products .product-card h3 {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .buy-now-btn {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    .load-more-btn {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 576px) {
    .highlight-text h2 {
        font-size: 2rem;
    }
    .features-section {
        padding: 1rem;
    }
    .features-title {
        font-size: 2rem;
        margin-top: 1rem;
        padding: 0;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .products-section {
        padding: 1rem;
    }

    .benefits-title {
        font-size: 2rem;
    }
    .forms-title {
        font-size: 2rem;
    }
    .highlight-text h2 {
        font-size: 2rem;
    }
    .products-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .product-card:first-child h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .other-products .product-card h3 {
        font-size: 1.1rem;
        margin: 8px 0;
    }

    .buy-now-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .load-more-btn {
        font-size: 1rem;
        padding: 8px 18px;
    }
    .products-grid > .other-products {
        grid-template-columns: repeat(1, 1fr);
    }
    .health-benefits-section {
        padding: 2.5rem;
    }
    .forms-section {
        padding: 2.5rem;
    }
    .products-grid > .other-products .product-card .product-image {
        max-width: 300px;
    }
}

/* Update just these media query sections */
@media (max-width: 992px) {
    .benefits-grid:has(.benefit-card:nth-child(5)) {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .benefits-grid:has(.benefit-card:nth-child(5)) {
        grid-template-columns: 1fr !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}