/* home.css */

.page-content {
    padding: calc(var(--spacing-unit) * 2) 0;
    /* Puedes añadir estilos específicos para el contenido de la home aquí */
}

/* Por ejemplo, si tu home.md tiene una imagen de héroe */
.hero-section {
    text-align: center;
    padding: calc(var(--spacing-unit) * 4) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: var(--spacing-unit);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}