
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {
    background-color: #f4f7fa; 
    color: #333; 
    line-height: 1.6;
}


.programas {
    background-color: #87CEEB; 
    background-image: url('fond.svg');
    text-align: center;
    padding: 50px 0; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 20px; 
}

h1 {
    font-size: 60px;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif; 
    letter-spacing: 2px;
    font-weight: bold;
}


h2 {
    font-size: 18px;
    color: #1E90FF; 
    margin-bottom: 10px;
    font-weight: bold;
}


p {
    color: #4682B4; 
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}


.programs {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}


.program1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff; 
    width: 45%; 
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program1:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.box1 {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.box1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.box1 img:hover {
    transform: scale(1.05); 
}


.box2 {
    font-size: 1rem;
    color: #555;
}


@media (max-width: 768px) {
    .program1 {
        width: 100%; 
        text-align: center;
    }

    .box1 {
        margin-bottom: 15px;
    }

    .box2 {
        font-size: 1rem;
    }
}
