/* Products Page Styles */
.products-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../images/hero/hero-image-2.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.products-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

.product-categories {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    display: flex;
    margin-bottom: 4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category:hover {
    transform: translateY(-10px);
}

.category img {
    width: 40%;
    height: 320px;
    object-fit: cover;
}

.category-content {
    width: 60%;
    padding: 2rem;
    background: white;
}

.category-content h2 {
    color: #ff6b00;
    margin-bottom: 1.5rem;
}

.category-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.category-content li {
    margin-bottom: 0.8rem;
    color: #555;
}

.learn-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #ff6b00;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.value-proposition {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

.value-proposition h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.propositions {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.proposition {
    flex: 0 1 30%;
    min-width: 300px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.proposition:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.proposition h3 {
    color: #ff6b00;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .category {
        flex-direction: column;
    }
    
    .category img, 
    .category-content {
        width: 100%;
    }
    
    .proposition {
        flex: 0 1 100%;
    }
}