/* FILE: termini.css */

.terms-container {
    background-color: #1a1a1a; /* Sfondo scuro per il contenitore */
    color: #f8f9fa;            /* Testo bianco/grigio chiaro */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombra leggera */
    max-width: 900px; /* Limita la larghezza massima per una migliore leggibilità */
    margin-left: auto;
    margin-right: auto;
}

.terms-title {
    color: #ffc107; /* Un tocco di colore (giallo/arancione come il tuo accento) */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.terms-content h2 {
    color: #007bff; /* Colore per i titoli delle sezioni (blu come il tuo accento) */
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content p,
.terms-content ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-content ul {
    list-style-type: disc; /* Punti per le liste */
    margin-left: 25px;
    margin-bottom: 20px;
}

.terms-content ul li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
    }
    .terms-title {
        font-size: 2rem;
    }
    .terms-content h2 {
        font-size: 1.5rem;
    }
    .terms-content p,
    .terms-content ul li {
        font-size: 1rem;
    }
}