/* Estilos para a página de Termos e Condições */
.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.text-block {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    color: #555;
    line-height: 1.8;
}

.text-block h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #eee;
    padding-bottom: 15px;
}

.text-block h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    background: #f9f9f9;
    padding: 10px 15px;
    border-left: 5px solid #27ae60; /* Verde seguindo o tema pet */
}

.text-block p {
    margin-bottom: 20px;
    text-align: justify;
}

.text-block ul {
    margin-bottom: 25px;
    list-style-type: disc;
    padding-left: 40px;
}

.text-block li {
    margin-bottom: 12px;
}

.text-block strong {
    color: #333;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 15px;
    }
    .text-block h1 {
        font-size: 24px;
    }
}