body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
	font-size: 1rem; /* Dimensiunea de bază a fontului */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0; /* rem pentru spațiere */
    flex: 1;
}

header {
    background-color: #003366;
    color: #fff;
    padding: 1rem 0; /* rem pentru spațiere */
} 

header .container {
    display: flex;
    justify-content: space-between;
    align-items: justify-content;
}

.logo {
    flex: 1 1 auto;
    height: auto;
    //max-height: 3rem;
    margin-right: 1rem;
	object-fit: scale-down;
	max-width: 100%;
}

header h1 {
    flex: 2 1 auto;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

nav {
    flex: 1 1 100%;
    order: 3;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none; /* Ascunde meniul implicit */
    width: 100%;
    text-align: center;
}

nav ul.nav-menu.show {
    display: block; /* Afișează meniul când este activ */
}

nav li {
    margin: 0.5rem 0; /* rem pentru spațiere */
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem; /* rem pentru dimensiunea fontului */
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    display: block; /* Afișează butonul doar pe mobil */
	order: 2;
}

section {
    padding: 2rem 0; /* rem pentru spațiere */
}

section h2 {
    font-size: 1.5rem; /* rem pentru dimensiunea fontului */
    margin-bottom: 1rem; /* rem pentru spațiere */
}

section ul {
    list-style-type: disc;
    padding-left: 1.5rem; /* rem pentru spațiere */
}

section li {
    margin-bottom: 0.5rem; /* rem pentru spațiere */
    font-size: 1rem; /* rem pentru dimensiunea fontului */
}

section a {
    color: #007bff;
    text-decoration: none;
    font-size: 1rem; /* rem pentru dimensiunea fontului */
}

footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 1rem 0; /* rem pentru spațiere */
    font-size: 0.8rem; /* rem pentru dimensiunea fontului */
}


nav a, footer a {
    position: relative;
}

nav a[data-tooltip]:not([data-tooltip=""])::after,
footer a[data-tooltip]:not([data-tooltip=""])::after {
    content: attr(data-tooltip);
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 0.5rem; /* rem pentru spațiere */
    border-radius: 0.3rem; /* rem pentru rotunjirea colțurilor */
    font-size: 0.8rem; /* rem pentru dimensiunea fontului */
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

nav a:hover::after, footer a:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Stiluri pentru ecrane mai mari (desktop) */
@media (min-width: 768px) {
    .container {
        width: 80%;
    }

    nav ul {
        display: flex; /* Afișează meniul pe desktop */
    }

     nav li {
        margin-left: 1rem; /* rem pentru spațiere */
    }

    .menu-toggle {
        display: none; /* Ascunde butonul pe desktop */
    }
}

.stats-container {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-inline: 16px;
}

.stats-container-2 {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-inline: 16px;
}

.stats-container .stat {
    background: #fff;
    padding: 24px;
    text-align: center;
    color: #FFD0EC;
    border-radius:25px;
}

.stats-container .stat .odometer {
    font-size: 50px;
    font-weight: bold;
    display: inline-block;
    color: #3e4496;
}

.stats-container .stat .type {
    font-size: 20px;
    color: #000;
}

.stats-container-2 .stat {
    background: #fff;
    padding: 24px;
    text-align: center;
    color: #FFD0EC;
    border-radius:25px;
}

.stats-container-2 .stat .odometer {
    font-size: 50px;
    font-weight: bold;
    display: inline-block;
    color: #3e4496;
}

.stats-container-2 .stat .type {
    font-size: 20px;
    color: #000;
}

.odometer.plus {
    position: relative;
}

.odometer.plus::after {
    content: "+";
    position: absolute;
    top: 0;
    right: -16px;
    font-size: 20px;
}

@media (max-width: 700px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    .stats-container-2 {
        grid-template-columns: 1fr;
    }
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: auto;
}

.card {
    width: 75%;
    padding: 1.2rem;
    background: #f5f5f5;
    border-radius: 10px;
}

.card p {
    text-align: justify;
}

.card:nth-child(odd) {
    align-self: flex-start;
}

.card:nth-child(even) {
    align-self: flex-end;
}

.card:nth-child(even) h2 {
    text-align: right;
}

.heroicons--academic-cap-solid {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23000'%3E%3Cpath d='M11.7 2.805a.75.75 0 0 1 .6 0A60.7 60.7 0 0 1 22.83 8.72a.75.75 0 0 1-.231 1.337a50 50 0 0 0-9.902 3.912l-.003.002l-.34.18a.75.75 0 0 1-.707 0A51 51 0 0 0 7.5 12.173v-.224a.36.36 0 0 1 .172-.311a55 55 0 0 1 4.653-2.52a.75.75 0 0 0-.65-1.352a56 56 0 0 0-4.78 2.589a1.86 1.86 0 0 0-.859 1.228a50 50 0 0 0-4.634-1.527a.75.75 0 0 1-.231-1.337A60.7 60.7 0 0 1 11.7 2.805'/%3E%3Cpath d='M13.06 15.473a48.5 48.5 0 0 1 7.666-3.282q.202 2.122.255 4.284a.75.75 0 0 1-.46.711a48 48 0 0 0-8.105 4.342a.75.75 0 0 1-.832 0a48 48 0 0 0-8.104-4.342a.75.75 0 0 1-.461-.71q.053-2.163.255-4.286q1.382.456 2.726.99v1.27a1.5 1.5 0 0 0-.14 2.508c-.09.38-.222.753-.397 1.11q.678.32 1.346.66a6.7 6.7 0 0 0 .551-1.607a1.5 1.5 0 0 0 .14-2.67v-.645a49 49 0 0 1 3.44 1.667a2.25 2.25 0 0 0 2.12 0'/%3E%3Cpath d='M4.462 19.462c.42-.419.753-.89 1-1.395q.68.321 1.347.662a6.7 6.7 0 0 1-1.286 1.794a.75.75 0 0 1-1.06-1.06'/%3E%3C/g%3E%3C/svg%3E");
}

.material-symbols--list {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 9V7h14v2zm0 4v-2h14v2zm0 4v-2h14v2zM4 9q-.425 0-.712-.288T3 8t.288-.712T4 7t.713.288T5 8t-.288.713T4 9m0 4q-.425 0-.712-.288T3 12t.288-.712T4 11t.713.288T5 12t-.288.713T4 13m0 4q-.425 0-.712-.288T3 16t.288-.712T4 15t.713.288T5 16t-.288.713T4 17'/%3E%3C/svg%3E");
}

.uil--building {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 8h1a1 1 0 0 0 0-2h-1a1 1 0 0 0 0 2m0 4h1a1 1 0 0 0 0-2h-1a1 1 0 0 0 0 2M9 8h1a1 1 0 0 0 0-2H9a1 1 0 0 0 0 2m0 4h1a1 1 0 0 0 0-2H9a1 1 0 0 0 0 2m12 8h-1V3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v17H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2m-8 0h-2v-4h2Zm5 0h-3v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5H6V4h12Z'/%3E%3C/svg%3E");
}

.cil--language {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M320 24H16v304h176v168h304V192H320ZM148.305 96L98.093 239.3H132l8.166-23.3H192v80H48V56h240v136h-66.668L187.7 96Zm36.317 88h-33.244L168 136.562ZM464 224v240H224V224Z'/%3E%3Cpath fill='%23000' d='M317.432 368.48a137 137 0 0 0 10.089 14.12q-17.4 9.384-39.521 9.4v32c24.141 0 45.71-6.408 64-18.824C370.29 417.592 391.859 424 416 424v-32q-22.075 0-39.52-9.407a137 137 0 0 0 10.088-14.113A166.2 166.2 0 0 0 406.662 320H424v-32h-56v-24h-32v24h-56v32h17.338a166.2 166.2 0 0 0 20.094 48.48M373.53 320a133 133 0 0 1-14.1 31.52a104 104 0 0 1-7.43 10.448a104 104 0 0 1-6.93-9.651A132.4 132.4 0 0 1 330.466 320Z'/%3E%3C/svg%3E");
}

.fa-solid--user-graduate {
    display: inline-block;
    width: 42px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23000' d='M319.4 320.6L224 416l-95.4-95.4C57.1 323.7 0 382.2 0 454.4v9.6c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-9.6c0-72.2-57.1-130.7-128.6-133.8M13.6 79.8l6.4 1.5v58.4c-7 4.2-12 11.5-12 20.3c0 8.4 4.6 15.4 11.1 19.7L3.5 242c-1.7 6.9 2.1 14 7.6 14h41.8c5.5 0 9.3-7.1 7.6-14l-15.6-62.3C51.4 175.4 56 168.4 56 160c0-8.8-5-16.1-12-20.3V87.1l66 15.9c-8.6 17.2-14 36.4-14 57c0 70.7 57.3 128 128 128s128-57.3 128-128c0-20.6-5.3-39.8-14-57l96.3-23.2c18.2-4.4 18.2-27.1 0-31.5l-190.4-46c-13-3.1-26.7-3.1-39.7 0L13.6 48.2c-18.1 4.4-18.1 27.2 0 31.6'/%3E%3C/svg%3E");
}

.quill--mail-list {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 7h14m4 0h4M5 13h10m8 0h4M5 19h14m4 0h4M5 25h12m6 0h4'/%3E%3C/svg%3E");
}