.product-section {
    padding: 60px 5%;
    background-color: white;
    border-radius: 10px;
    margin: 20px 5% 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-banner {
    height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/sac-bakimi-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 18px;
    max-width: 600px;
}

.info-section {
    padding: 50px 5%;
    background-color: #f9f9f9;
    margin: 0 5% 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.info-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.info-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 30px;
    color: #4CAF50;
    margin-right: 20px;
    background-color: rgba(76, 175, 80, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

.product-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #4CAF50;
    font-size: 32px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-container {
        grid-template-columns: 1fr;
    }
} 