/* Custom Solutions Section */
.custom-solutions-section {
    background-size: cover;
    background-position: center;
    color: white !important;
    padding: 80px 0;
    position: relative;
}

.custom-solutions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.39); /* Dark overlay for better text visibility */
    z-index: 1;
}

.custom-solutions-section .container {
    position: relative;
    z-index: 2;
}

.custom-solutions-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-solutions-section p.lead {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.custom-solutions-section .btn-outline-light {
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 2px solid white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-solutions-section .btn-outline-light:hover {
    background-color: white;
    color: #000;
}



/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 1.2rem;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Product Hero Section */
#product-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

#product-hero .container {
    z-index: 2;
    position: relative;
}

#product-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#product-hero p.lead {
    font-size: 1.5rem;
    color: #ddd;
}

/* Product Details Section */
#product-details {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#product-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

#product-details p {
    font-size: 1rem;
    color: #6c757d;
}

#product-details .list-unstyled li i {
    margin-right: 10px;
}


/* Customer Reviews Section */
#customer-reviews {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#customer-reviews .review-box {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#customer-reviews h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Purchase CTA Section */
#purchase {
    padding: 60px 0;
}

#purchase h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

#purchase p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: white;
}

footer a {
    color: #f8f9fa;
    transition: color 0.2s;
}

footer a:hover {
    color: #007bff;
    text-decoration: none;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

footer i {
    margin-right: 10px;
}

footer hr {
    border-top: 1px solid #f8f9fa;
}

footer .social a {
    font-size: 1.5rem;
    margin-right: 15px;
}

footer .social a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    #product-hero h1 {
        font-size: 2.5rem;
    }

    #product-hero p.lead {
        font-size: 1.2rem;
    }

    #product-details h2, #purchase h2 {
        font-size: 2rem;
    }

    #product-details p, #purchase p {
        font-size: 1rem;
    }

    footer p {
        text-align: center;
    }

    footer .social a {
        margin-bottom: 10px;
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #343a40;
}

h2, h5 {
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 1.2rem;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #005
}