/* Product Content Styles */
.product-content {
    padding: 40px 0;
}

.product-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-box {
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
    display: block;
}

.product-info h5 {
    margin-bottom: 0;
}

.product-info a {
    text-decoration: none;
    color: #fff; /* White text for contrast on dark background */
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-info a:hover {
    color: #007bff;
}

.bullet-point {
    position: relative;
    padding-left: 0;
}

.bullet-point:before {
    content: "•";
    color: #007bff;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-box {
        padding: 15px;
    }
    
    .product-image {
        height: 200px;
    }

    .product-info h5 {
        font-size: 20px !important; /* Larger heading for tablets */
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-content {
        padding: 20px 0;
    }

    .product-info h5 {
        font-size: 22px !important; /* Bigger heading for mobile */
    }
}

/* CTA sectiob */
.cta-section {
    padding: 80px 0;
    background: #82817f;
    color: var(--light-text);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #fff;
}

.btn-light {
    background-color: var(--light-text);
    color: var(--dark-bg);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-light:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
}
