* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.banner-container {
    /* Agrega tu imagen de fondo */
    background-image: url('../images/campus/campus.jpg'); /* Reemplaza con la ruta a tu imagen */
    background-size: cover; /* Hace que la imagen cubra todo el contenedor */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* No repite la imagen */
    position: relative; /* Necesario para contener la capa de superposición */
    padding: 20px 0px; /* Espacio alrededor del contenido */
    color: #ffffff; /* Color del texto en blanco */
    height: 300px;
}

.orientation {
    text-align: center;
    padding: 20px 0;
}

.title {
    font-size: 36px;
    font-weight: bold;
    color: #e30613;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}

.orientation-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.orientation-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s;
}

.orientation-card:hover {
    transform: scale(1.05);
}

.profile-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.role {
    font-weight: bold;
    color: #e30613;
    margin-bottom: 10px;
}

button {
    background-color: #e30613;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #d00512;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .orientation-cards {
        flex-direction: column;
        align-items: center;
    }
}
