/* Estilos para a seção de Termos e Condições */
.terms-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.terms-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.terms-section .intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 10px;
}

.terms-section .effective-date {
    font-size: 0.9em;
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
}

.terms-section h3 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.terms-section p {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 10px;
}

/* Estilos para links, se necessário */
.terms-section a {
    color: #3498db;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}