/* Header styles */
.hero-body {
    background: linear-gradient(90deg, #f7a440, #ffd700);
    color: white;
    text-align: center;
}
.hero-body h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}
.hero-body p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .title {
        font-size: 1.5rem; /* Adjust as needed */
    }
    .subtitle {
        font-size: 1rem; /* Optional: Adjust subtitle size */
    }
}


/* Footer styles */
footer {
    background-color: #222;
    color: #aaa;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
}
/* Custom list centering */
/*
.product-list ul {
    list-style-position: inside;
    margin: 0 auto;
    max-width: 300px;
}*/
/* Enhanced shadow for the product box */
.box.product-list {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3), 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box.product-list:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.4), 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.custom-contact-button {
    background-color: #ffd700;
    color: #333;
    padding: 10px 30px;
    font-size: 1.5em;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border: 0;
}
.custom-contact-button:hover {
    background-color: #ffd700;
    color: white;
    text-decoration: none;
}