body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
    
}

.main-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.section-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.azc {
    border-top: 5px solid #be1622; 
    background: linear-gradient(135deg, #ffffff, #f3f0e6); 
}

.bilingue {
    border-top: 5px solid #0d3b66; 
    background: linear-gradient(135deg, #ffffff, #f3f0e6); 
}

.card h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 22px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-azc {
    background-color: #be1622;
    color: white;
}

.btn-bilingue {
    background-color: #0d3b66;
    color: white;
}

.btn:hover {
    transform: scale(1.05);
}

.card-image {
    width: 100%;
    height: 180px; 
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.section-logo {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

@media (max-width: 600px) {
    .main-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .card h3 {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

