/* Configuración Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Encabezado */
.header {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.header p {
    font-size: 0.95rem;
    color: #a0aec0;
}

/* Contenido Principal */
.content {
    background-color: #ffffff;
    margin-top: -20px;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.35rem;
    color: #2b6cb0;
    margin-bottom: 12px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 6px;
}

p {
    margin-bottom: 12px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

/* Caja de Contacto */
.contact-box {
    background-color: #ebf8ff;
    border-left: 4px solid #3182ce;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 15px;
}

.contact-box p {
    margin-bottom: 5px;
}

.contact-box a {
    color: #2b6cb0;
    font-weight: bold;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Pie de Página */
.footer {
    text-align: center;
    padding: 20px 0;
    color: #718096;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
}

/* Adaptación Móvil */
@media (max-width: 600px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .content {
        padding: 20px;
        margin-top: 0;
    }
}