.title {
    text-align: center;
}

.nav-icon {
    font-size: 19px;
}

.nav-right {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px; 
}

.lang-wrapper {
    display: flex; 
    background-color: white;
    border-radius: 10px;
}

.lang-wrapper li {
    list-style: none;
}

.lang-wrapper a {
    text-decoration: none;
    font-weight: bold;
    display: block;
    color: #004dc1;
}

.selected {
    background-color: #d4d7e2;
    border-radius: 10px;
}

.selected a {
    color: #004dc1;
}

.item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 200px;
    min-width: 120px;
    min-height: 120px;
    max-width: 300px;
}

.main-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-content a {
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.main-content a:hover {
    transform: scale(110%);
}

.main-content h3 {
    color: #003EBB;
}

.responsive {
  width: 100%;
  height: auto;
}