@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
    font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Culori */
    --white: rgba(255, 255, 255, 0.63);
    --background: #efefed;
    --purple: #160c55;
    --bright-purple: rgb(18, 0, 175);
    --white-dark: #F3F3F3;
    --white-very-dark: #c7c3da;
    --purple-dark: #140c49;
    --purple-verydark: #050218;
    --text-highlight: #2312BA;

    /* Marime Font*/
    --font-size-xs: 0.9rem;
    --font-size-s: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Tip de font*/
    --font-weight-normal:400;
    --font-weight-medium:500;
    --font-weight-semibold:600;
    --font-weight-bold:700;
    --font-weight-extrabold:800;

    /* Margini */

    --border-radius-s: 8px; 
    --border-radius-m: 30px; 
    --border-radius-l: 50px; 
    --border-radius-circle: 50%; 

    /* Marime maxima site */

    --site-max-width: 1400px;

    /* animation */
    --base: #303952;
    --accent: #786fa6;
    --shadow: rgba(0, 0, 0, 0.37);
}
.html{
    scroll-behavior: smooth;
}
body{
    background: var(--background);
}
header {
    background: var(--white-dark);
    position: fixed;
    width: 100%;
    z-index: 100;
}

/* menu nou for mobile */

/* "Hide" checkbox -- moves it off screen*/
#menu-btn {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 0;
  height: 0;
  visibility: hidden;
}

/* Hide hamburger for bigger screens */
.menu-icon {
  visibility: hidden;
}


.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.nav-left {
    background: var(--white);
    padding: 12px 20px;
    border-top-right-radius: var(--border-radius-l);
    border-bottom-right-radius: var(--border-radius-l);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.navbar .navbar-menu{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav-logo{
    display: none;
}

.navbar .navbar-menu .nav-center{
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: flex-start;
}
.nav-link {
    color: var(--purple-dark);
    padding: 10px 18px;
    font-size: var(--font-size-s);
    border-radius: var(--border-radius-l);
    transition: 0.3s ease;
}
.nav-link:hover{
    padding: 8px 16px;
    border-radius: var(--border-radius-l);
    border: 3px solid var(--purple);
    font-size: var(--font-size-s);
    background: var(--white);
    color: var(--purple);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}


.language-dropdown {
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    color: var(--purple-dark);
    padding: 10px 18px;
    font-size: var(--font-size-s);
    border-radius: var(--border-radius-l);
    transition: 0.3s ease;
}

.language-dropdown:hover {
    padding: 8px 16px;
    border-radius: var(--border-radius-l);
    border: 3px solid var(--purple);

    font-size: var(--font-size-s);
    background: var(--white);
    color: var(--purple);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}


.nav-item select {
    outline: none;
    color: var(--purple-dark);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    color: var(--purple-dark);
}

/* .navbar .navbar-menu .nav-center .nav-left #menu-close-button {
    display: none;
}

.navbar #menu-open-button {
    display: none;
}

.McButton {
    display: none;
} */
.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-right: 20px;
    justify-content: flex-end;
}

.contact-btn {
    background: var(--purple);
    border: 3px solid var(--purple);
    color: var(--white-dark);
    padding: 8px 16px;
    border-radius: var(--border-radius-l);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.3s ease;
}
.contact-btn:hover {
    background: var(--white);
    color: var(--purple-dark);
    padding: 8px 16px;
    border-radius: var(--border-radius-l);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: var(--font-weight-extrabold);
    border: 3px solid var(--purple);
}
button {
    cursor: pointer;
    border: none;
    background: none;
}
button .submit:hover{
    background: var(--purple-dark);
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.presentation{
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);

}
.presentation {
    min-height: 100vh;
}

.presentation .section-content{
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--purple-dark);
    justify-content: space-between;
}



.presentation .details .text-container .title{
    font-size: 42px;
    font-weight: 900;
    color: var(--background);
    -webkit-text-stroke: 2px navy;
    text-align: left;
    opacity: 1;
    transition: 500ms;
    transform: translateX(0);
    transform-origin: left;
    
    transition: transform 0.3s ease;
}

.presentation .details .text-container .title:hover{
    transform: scale(1.05);
}

.presentation .details  .subtitle{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 60px;
    padding-left: 60px;
    padding-left: 0;
    font-size: var(--font-size-s);
    font-weight: 700;
    text-align: center;
    color: var(--purple);
    
    transition: transform 0.3s ease;
}

.presentation .details  .subtitle:hover{
    transform: scale(1.05);
}

.text-container {
    display: inline-block;
    line-height: 1.3;
}
.line1 {margin-left: 0px; 
    font-family: "Archivo Black", serif; 
    text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);
}
.line2 {margin-left: 50px; 
    font-family: "Archivo Black", serif;

    text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);}
.line3 {margin-left: 80px; 
    font-family: "Archivo Black", serif;

    text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);}
.line4 {margin-left: 30px; 
    font-family: "Archivo Black", serif;

    text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);}

.presentation .section-content .buttons{
    display: flex;
    gap: 23px;
    justify-content: center;
    padding-right: 100px;
    
}

.presentation .section-content .button {
    padding:10px 26px;
    color: var(--white-dark);
    background: var(--purple);
    border-radius: var(--border-radius-l);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: var(--font-weight-extrabold);
    border: 3px solid var(--purple);
    transition: 0.3s ease;

}

.presentation .section-content .button:hover {
    color: var(--purple);
    background: var(--white-dark);
    border-radius: var(--border-radius-l);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: var(--font-weight-extrabold);
    border: 3px solid var(--purple);
}

.presentation .section-content .about-us {
    color: var(--purple);
    background: var(--white-dark);
    border-radius: var(--border-radius-l);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: var(--font-weight-extrabold);
    border: 3px solid var(--purple);
    transition: 0.3s ease;
}

.presentation .section-content .about-us:hover {
    padding:10px 26px;
    color: var(--white-dark);
    background: var(--bright-purple);
    border-radius: var(--border-radius-l);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: var(--font-weight-extrabold);
    border: 3px solid var(--bright-purple);
    
}

.presentation .image{
    transition: transform 0.3s ease;
}

.presentation .image:hover{
    transform: scale(1.05);
}
.presentation .image .image-presentation{
        max-width: 600px;
}

/* How it works */
.how-it-works {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    background-color: var(--purple-dark);
}

h2.header-how {
    color: var(--white-very-dark);
    padding-bottom: 40px;
    font-size: var(--font-size-xl);
    text-align: center;
    align-self: center;
}

.container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: auto;
}

.card {
    background: rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    max-height: 700px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: block;
}
.card:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.icon {
    margin-bottom: 10px;
    transition: tranform 0.3 ease;
}

.icon:hover{
    transform: scale(1.05);
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white-very-dark);
}

.description {
    font-size: 14px;
    margin-left: 5px;
    color: var(--white-very-dark);
    text-align: left;
    padding: 5px;
}

.fa-star {
    padding: 5px;
}

.description {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--white-very-dark);
    text-align: left;
    padding: 5px;
    transition: opacity 0.3s ease-in-out;
    display: block;
}


.partners {
    text-align: center;
    padding: 50px 0;
    background: url("/site/spec/media/background.jpg") no-repeat center center;
    background-size: cover;
    
}
.partners h2{
    color: var(--white-dark);
}

.partners-group{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: var(--border-radius-m);
    margin: 40px 50px;
}


.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
}


.partners {
    text-align: center;
    align-items: center;
    padding: 50px 0;
    background-color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
}
.header-partners {
    color: var(--purple-verydark);
    font-size: 44px;
    margin-bottom: 20px;
}
.partners-group{
    padding: 20px;
}

.logo-hover img {
    transition: transform 0.3s ease;
  }
  
.logo-hover img:hover {
    transform: scale(1.1);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

section {
    scroll-margin-top: 100px; /* cât de înalt e headerul tău */
}
@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  

.about-us{
    background-color: var(--background);
}

.container-about-us {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1200px;
    max-height: 2417px;
    margin: auto;
    padding: 10px;
    align-items: center;

}



.news {
    max-width: 800px;
    padding: 30px;
    margin: 40px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.card-about-us p {
    font-size: 16px;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
}


.card-about-us {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin: 40px auto;
    text-align: center;
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    transition: 0.3s ease;
}

.card-about-us:hover{
    transform: scale(1.05);
}

.card-about-us a {
    color: var(--purple-dark, #007bff);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.card-about-us a:hover {
    color: var(--purple-verydark, #0056b3);
    text-decoration: underline;
}
.title-about-us {
    font-size: 1.8rem;
    align-items: center;
    font-weight: 900;
    gap:20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
}

 .buttons{
    display: flex;
    justify-content: center;
    padding-right: 5px;
    padding-left: 5px;
    
}

.button {
    padding:10px 26px;
    color: var(--white-dark);
    background: var(--purple);
    border-radius: var(--border-radius-l);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-weight: var(--font-weight-extrabold);
    border: 3px solid var(--purple);
    transition: 0.3s ease;
    font-size: var(--font-size-s);

}

.button:hover {
    background-color: var(--purple);
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card-about-us h2{
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cool {
    position: relative;
    display: flex;
    justify-content: center;
}
.cool span {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cool span.show {
    opacity: 1;
    transform: translateY(0);
}


.cool span::before,
.cool span::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    max-width: 0;
    color: var(--accent);
    transition: max-width 0.7s cubic-bezier(0.61, 1, 0.88, 1);
}

.cool span.show::before,
.cool span.show::after {
    max-width: 100%;
}


@keyframes max-width {
    from {
        max-width: 0;
    }
    to {
        max-width: 100%;
    }
}

@keyframes max-height {
    from {
        max-height: 0;
    }
    to {
        max-height: 100%;
    }
}


@media (prefers-reduced-motion) {
    .cool span {
        color: var(--base);
    }

    .cool span::before,
    .cool span::after {
        animation: none;
        content: "";
    }
}


footer {
    background-color: var(--white);
    text-align: center;
    color: #222;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;

    font-weight: 500;
}

.footer-logo img {
    height: 30px;
}

.footer-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-direction: row;
}

.footer-menu li a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    transition: ease-in-out;
}

.footer-menu li a:hover {
    text-decoration: none;
    color: var(--purple);
    font-weight: bold;
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px 0;
    font-size: 12px;
    color: #888;
}

#footer-info{
    left: 0;
    bottom: 0;
    width: 100%;
}

.contact-section {
    padding-top: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-section h2 {
    
    padding-top: 50px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    background-color: var(--purple);
    color: white;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: var(--purple-dark);
}

.container-2{
    padding-top: 100px;
    padding-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.footer-column {
    padding-top: 20px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 0;
    bottom: 100px; 
    min-width: 200px;
    margin-left: auto;
    margin-right: 30px;
}

.footer-column img:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.contact-info-ingenios {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.contact-info-ingenios p{
    display: flex;
    align-items: center;
    
    margin-top: 10px;
    justify-content: center;
}

.contact-info-ingenios a:hover {
    color: var(--purple);
    transform: scale(1.05);
}


.news{
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
    height: auto;

}

/* loading... */

.global-spinner {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.global-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    to { transform: rotate(360deg); }
}

  
@media screen and (max-width: 1150px) {

    :root {
    
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
    }

     header {
        display: grid; 
        grid-template-areas:
        " hamburger"
        " nav"; 
    }
    
    .navbar{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
        margin: 0;
        min-height: 65px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        background: var(--white-dark);
    }

    #menu-btn:checked ~ .menu-icon + .navbar-menu {
    max-height: 1000px; 
    transition: max-height 0.3s ease-in-out;
    }

    .navbar-menu {
    max-height: 0;
    width: 100%;
    overflow: hidden;
    flex-direction: column;
    transition: max-height 0.3s ease-in-out;
    }
    .navbar .navbar-menu .nav-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    gap: 50px;
    align-items: center;
    justify-content: flex-start;
    }

    .navbar .navbar-menu .nav-right{
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
        justify-content: flex-start;
        font-size: var(--font-size-l);
        padding-right: 0;
    }

    .navbar .navbar-menu .nav-right .nav-link{
        color: var(--purple-dark);
        display: block;
        margin-top: 40px;
    }
    .language-dropdown{
        margin-top: 20px !important; 
        font-size: var(--font-size-l);
    }
    .navbar .nav-menu .nav-right .contact-btn{
        margin-top: 20px;
        display: block;
        color: white;
        font-size: var(--font-size-l);
        margin-bottom: 60px;
    }

    .navbar .navbar-menu .nav-right .nav-link {
        color: var(--purple-dark);
        display: block;
        margin-top: 20px;
        font-size: var(--font-size-l);
    }


    .nav-link {
        color: var(--purple-dark);
        font-size: var(--font-size-s);
        border-radius: var(--border-radius-l);
        transition: 0.3s ease;
    }
    .nav-link:hover{
        border-radius: var(--border-radius-l);
        border: 3px solid var(--purple);
        font-size: var(--font-size-s);
        background: var(--white);
        color: var(--purple);
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }


    .iroSelector {
        border: 1px solid #ccc;
        background-color: white;
        cursor: pointer;
        color: var(--purple-dark);
        font-size: var(--font-size-s);
        border-radius: var(--border-radius-l);
        padding: 8px 16px;
        transition: 0.3s ease;
    }

    .iroSelector:hover {
        padding: 8px 16px;
        border-radius: var(--border-radius-l);
        border: 3px solid var(--purple);

        font-size: var(--font-size-s);
        background: var(--white);
        color: var(--purple);
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }


    .navbar-menu a {
        text-decoration: none;
    }

    .menu-btn {
        display: none;
    }

    .menu-icon {
        grid-area: hamburger;
        cursor: pointer;
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        padding: 30px 20px 30px 0;
        position: absolute;
        right: 0;
        user-select: none;
        visibility: visible;
    }

    .navicon {
        background: #333;
        display: block;
        height: 2px;
        width: 18px;
        position: relative;
    }

    .navicon:before {
        top: 5px;
    }

    .navicon:after {
        top: -5px;
    }

    .navicon:before, .navicon:after {
        background: #333;
        display: block;
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        transition: all .2s ease-out;
    }

    .nav-left{
        background: var(--white);
        position: fixed;
        left: 0;
        top: 0;
        padding: 12px 20px;
        border-bottom-right-radius: var(--border-radius-l);
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
    .navbar-menu {
        grid-area: nav;
        max-width: unset;
        max-height: 0;
        transition: max-height .2s ease-out;
        overflow: hidden;
        margin: 0;
        padding: 0;
        background-color: #fff;
        display: flex;
        flex-direction: column;
    }

    .nav-item a {
        border: 1px solid #909090;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }


    #menu-btn:checked ~ .menu-icon + .navbar-menu {
        height: 100vh;
        max-height: unset;
        overflow-y: auto;
        transition: height 0.3s ease-in-out;
        position: absolute;
        display: flex;
        justify-content: flex-start;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 999;
        visibility: visible;
    }

    .menu-btn:checked ~ .menu {
        max-height: 240px;
    }

    .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

    .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:before,
    .menu-btn:checked ~ .menu-icon .navicon:after {
        top: 0;
    }


    .navbar:after{
        height: 100%;
    }
    .presentation{
        display: flex;
        margin: 0 auto;
        padding: 0 20px;
        max-width: var(--site-max-width);

    }
    .presentation .section-content{
        flex-direction: column;
        padding: 30px 20px 20px;
        justify-content: center;
        
    }

    .presentation .section-content .details {
        display: flex;
        flex-direction: column;
        padding: 30px 20px 20px;
        justify-content: center;
        

    }
    .presentation .section-content .details .text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0 0;
        align-items: center;

    }

    .line1 {margin-left: 0px; 
    text-align: center;
    font-family: "Archivo Black", serif; 
    text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);
    }
    .line2 {margin-left: 0px; 
        text-align: center;
        font-family: "Archivo Black", serif;
        text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);}
    .line3 {margin-left: 0px; 
        text-align: center;
        font-family: "Archivo Black", serif;

        text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);}
    .line4 {margin-left: 0px; 
        text-align: center;
        font-family: "Archivo Black", serif;
        text-shadow: 0 6px 6px rgba(57, 6, 109, 0.2);}

    .presentation .section-content .details .text-container .title{
        font-size: 24px !important;
        flex-direction: column;
        
        text-align: center;
        padding: 0;
        margin: 0;
        justify-content: center;
        -webkit-text-stroke: 0.6px navy;
    }

    .presentation .section-content .details .subtitle{
        font-size: var(--font-size-xs);
        justify-content: center;
        padding-left: 5px;
        padding-right: 5px;
    }

    .presentation .section-content .buttons{
        display: flex;
        gap: 23px;
        justify-content: center;
        padding-right: 5px;
        padding-left: 5px;
        
    }
    
    .presentation .section-content .button {
        padding:10px 26px;
        color: var(--white-dark);
        background: var(--purple);
        border-radius: var(--border-radius-l);
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        font-weight: var(--font-weight-extrabold);
        border: 3px solid var(--purple);
        transition: 0.3s ease;
    
    }
    
    .presentation .section-content .button:hover {
        color: var(--purple);
        background: var(--white-dark);
        border-radius: var(--border-radius-l);
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        font-weight: var(--font-weight-extrabold);
        border: 3px solid var(--purple);
        font-size: var(--font-size-s);
    }
    
    .presentation .section-content .about-us {
        color: var(--purple);
        background: var(--white-dark);
        border-radius: var(--border-radius-l);
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        font-weight: var(--font-weight-extrabold);
        border: 3px solid var(--purple);
        transition: 0.3s ease;
        font-size: var(--font-size-s);
    }
    
    .presentation .section-content .about-us:hover {
        padding:10px 26px;
        color: var(--white-dark);
        background: var(--bright-purple);
        border-radius: var(--border-radius-l);
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        font-weight: var(--font-weight-extrabold);
        border: 3px solid var(--bright-purple);
    }
    .presentation .image{
        display: flex;
        justify-content: center;
    }
    .presentation .image .image-presentation{
        max-width: 300px;
    }
    .about-us{
        background: var(--background) !important;
    }

    
    .card-about-us p {
        font-size: 12px;
    }

    
    .card-about-us {
        max-width: 600px;
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
    }


    
    .card-about-us a {
        color: var(--purple-dark, #007bff);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease-in-out;
    }

    .card-about-us a:hover {
        color: var(--purple-verydark, #0056b3);
        text-decoration: underline;
    }
    .title-about-us {
        margin-top: 30px;
        font-size: 1.4rem;
    }
    

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .contact-info {
        text-align: center;
        margin-top: 20px;
    }

    
    .partners{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .partners-group{
        max-width: 550px;
        gap: 20px;
        margin: 40px 30px;
    }

    .partners-grid {
       flex-direction: column;
       gap:20px;
       padding-left: 0;
       padding-right: 0;

    }
    .header-partners {
        font-size: 1.8rem;
    }
    

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
    }
    .footer-menu li a:hover {
        color: var(--purple);
        text-decoration: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
        gap: 10px;
    }

    .language-selector {
        display: flex;
        align-items: center;
        gap: 8px;
      }
    
}