/* STYLES FOR PRODOTTI & FAQ SECTIONS */

/* Common Section Styling */
.centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.section_prodotti,
.section_faq {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

/* Alternate background colors for sections */
.section_prodotti {
    padding: 4rem 0;
    background-color: #f9f9fb; /* Grigio molto chiaro per uno stacco leggero */
    color: var(--text-color--text-primary); /* Ripristina il colore del testo scuro */
    text-align: center;
}

.section_prodotti .heading-large,
.section_prodotti .text-size-medium {
    color: var(--text-color--text-primary); /* Assicura che anche i titoli e i paragrafi siano scuri */
}

.section_faq {
    background-color: #f9f9fb;
}

/* Prodotti Grid Layout */
.prodotti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.prodotto-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prodotto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.prodotto-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(241, 116, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.prodotto-icon svg {
    width: 30px;
    height: 30px;
    color: #f1742b;
}

.prodotto-card h3 {
    font-family: var(--font-family--heading);
    color: #595498;
    font-size: 20px;
    margin-bottom: 15px;
}

.prodotto-card p {
    font-family: var(--font-family--body);
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* FAQ Styling */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f1742b;
}

.faq-question {
    font-family: var(--font-family--heading);
    color: #595498;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer {
    font-family: var(--font-family--body);
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .prodotti-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section_prodotti,
    .section_faq {
        padding: 60px 0;
    }
    
    .prodotti-grid {
        grid-template-columns: 1fr;
    }
    
    .prodotto-card,
    .faq-item {
        padding: 25px 20px;
    }
}
