/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales en blanco y negro */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Fondo blanco */
    color: #000000; /* Texto negro */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    border-bottom: 2px solid #000000;
    padding: 20px 0;
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

.school-name {
    font-size: 1.2rem;
    font-weight: normal;
}

/* Contenido de la Política */
.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    margin-bottom: 30px;
    color: #333333; /* Un gris muy oscuro para una ligera distinción */
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

p, li {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

li strong {
    font-weight: bold;
}

/* Footer */
footer {
    border-top: 2px solid #000000;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}