/* Welcome Section */
.welcome-section {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(33, 136, 114, 0.1), rgba(33, 136, 114, 0.2));
    position: relative;
    overflow: hidden;
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Products Section */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.products-content, 
.highlighted-products {
    padding: 2rem;
}

.products-title {
    color: #218872;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #218872;
}

.products-description p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.products-list-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.products-list {
    list-style: none;
}

.products-list li {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.products-list li:hover {
    transform: translateX(5px);
}

.product-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Product Icons CSS remains the same */
.product-icon.clinical {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Cpath d='M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z'/%3E%3Cpath d='M9 9h6'/%3E%3Cpath d='M12 6v6'/%3E%3Cpath d='M8 17h8'/%3E%3C/svg%3E");
}

.product-icon.vaccine {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M18 8l-4-4'/%3E%3Cpath d='M14 4l-8 8'/%3E%3Cpath d='M14 12l-4-4'/%3E%3Cpath d='M12 14l-4-4'/%3E%3Cpath d='M10 16l-4-4'/%3E%3C/svg%3E");
}

.product-icon.capsule {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Cpath d='M4.9 19.1C1 15.2 1 8.8 4.9 4.9s10.2-3.9 14.1 0-3.9 10.2 0 14.1-10.2 3.9-14.1 0z'/%3E%3Cpath d='M12 12L19 5'/%3E%3C/svg%3E");
}

.product-icon.tablet {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

.product-icon.liquid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Cpath d='M8 3h8'/%3E%3Cpath d='M10 3v3'/%3E%3Cpath d='M14 3v3'/%3E%3Cpath d='M7 6h10v4c0 6-2 10-5 10s-5-4-5-10V6z'/%3E%3C/svg%3E");
}

.product-icon.powder {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Cpath d='M7 3h10v4l-2 2v10a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9L7 7V3z'/%3E%3Ccircle cx='9' cy='12' r='1'/%3E%3Ccircle cx='15' cy='13' r='1'/%3E%3Ccircle cx='12' cy='15' r='1'/%3E%3C/svg%3E");
}

.product-icon.spray {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23218872' stroke-width='2'%3E%3Cpath d='M4 8h12v12H4z'/%3E%3Cpath d='M16 5h2'/%3E%3Cpath d='M16 8h2'/%3E%3Cpath d='M16 11h2'/%3E%3Cpath d='M19 5v6'/%3E%3Cpath d='M8 4v4'/%3E%3Ccircle cx='8' cy='3' r='1'/%3E%3C/svg%3E");
}

/* Product Cards */
.products-grid-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.product-card p {
    margin-top: 1rem;
    color: #333;
    font-weight: 500;
}

/* Download Button */
.download-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #218872;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #1a6d5a;
}

.download-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-list-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid-gallery {
        grid-template-columns: 1fr;
    }
    
    .welcome-section {
        padding: 4rem 1rem;
    }
    
    .products-content, 
    .highlighted-products {
        padding: 1rem;
    }
}

/* Tablet/Small Screen Breakpoint */
@media (max-width: 480px) {
    .welcome-section {
        padding: 3rem 0.75rem;
    }
    
    .products-section {
        padding: 2rem 0.75rem;
    }
    
    .products-title {
        font-size: 1.5rem;
    }
    
    .products-content, 
    .highlighted-products {
        padding: 0.75rem;
    }
    
    .product-card {
        margin: 0 0.5rem;
    }
    
    .download-button {
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Breakpoint */
@media (max-width: 320px) {
    .welcome-section {
        padding: 2rem 0.5rem;
    }
    
    .products-section {
        padding: 1.5rem 0.5rem;
    }
    
    .products-title {
        font-size: 1.25rem;
    }
    
    .products-content, 
    .highlighted-products {
        padding: 0.5rem;
    }
    
    .products-list li {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .product-icon {
        width: 20px;
        height: 20px;
    }
    
    .download-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .download-icon {
        width: 16px;
        height: 16px;
    }
    
    .product-card p {
        font-size: 0.9rem;
    }
}