/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), url('/media/institucion/colegio1.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.hero-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* News Preview */
.news-snippet {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}