/* Estilos para EDUWORD */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

header {
    background: #bc0613;
    color: white;
    padding: 20px 0;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

.scholarships {
    padding: 40px 20px;
}

.scholarships h2 {
    color: #bc0613;
    font-size: 2rem;
    margin-bottom: 10px;
}

.scholarship-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card h3 {
    color: #bc0613;
    margin-top: 10px;
}


