body {
    font-family: Arial, sans-serif;
    background-color: #F8F9FC;
    text-align: center;
    margin: 0;
    padding: 0;
}

.navbar {
    position: absolute;
    top: 5px;
    left: 2px;
}

.logo {
    width: 140px;
}

.container {
    max-width: 1100px;
    margin: 70px auto 50px;
}

.title {
    font-size: 90px;
    font-weight: bold;
    background-color: #002B5B;
    color: #00C2FF;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 20px;
}

.card {
    background-color: #FFFFFF;
    width: 230px;
    height: 220px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 135px;
    object-fit: contain;
    padding: 15px;
}

.card:nth-child(3) img {
    object-fit: cover; 
    height: 177px; 
    width: 100%; 
    padding: 0; 
    border-radius: 10px 10px 0 0; 
}

.card-footer {
    background-color: #EAEFF5;
    font-weight: bold;
    color: #333;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .card-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .card-container {
        flex-wrap: wrap;
    }
}
