.product-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #999999;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    gap: 30px;
}

.product-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.product-info {
    max-width: 600px;
    color: white;
    text-align: left;
}

.product-category {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.product-info h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.product-button {
    display: inline-block;
    background-color: #c11520;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.product-button:hover {
    background-color: #a10f18;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
        text-align: center;
    }
    .product-info {
        text-align: center;
    }
}
