/* Estilos Generales (ya existentes) */
/* ... */

/* Hero Section */
.hero {
    background-image: url('images/hero-bg.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn-hero {
    background-color: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #e6b800;
}

/* Sobre Nosotros */
.sobre-nosotros {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.sobre-nosotros h2 {
    color: #003366;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.sobre-nosotros p {
    color: #666;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #002244;
}

/* Carreras y Programas */
.carreras {
    padding: 50px 20px;
    text-align: center;
}

.carreras h2 {
    color: #003366;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.carreras-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.carrera {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
}

.carrera h3 {
    color: #003366;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.carrera p {
    color: #666;
    font-size: 1em;
}

/* Por Qué Elegirnos */
.elegirnos {
    background-color: #003366;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.elegirnos h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.razones-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.razon {
    max-width: 300px;
}

.razon i {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.razon h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.razon p {
    font-size: 1em;
}

/* Testimonios */
.testimonios {
    padding: 50px 20px;
    text-align: center;
}

.testimonios h2 {
    color: #003366;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.testimonios-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonio {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
}

.testimonio p {
    color: #666;
    font-size: 1em;
    margin-bottom: 10px;
}

.testimonio span {
    color: #003366;
    font-weight: bold;
}

/* Contacto CTA */
.contacto-cta {
    background-color: #ffcc00;
    color: #003366;
    padding: 50px 20px;
    text-align: center;
}

.contacto-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contacto-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Pie de Página (ya existente) */
/* ... */