* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

ul {
    list-style: none;
}

.button-header {
    background: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}

.main-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 10px;
}

.main-header img {
    height: 36px;
    margin: 16px 10px;
}

.main-header ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.main-header .main-nav {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}

.main-header a {
    color: #262626;
    font-size: 13px;
    text-decoration: none;
}

.main-header .utility-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.main-header a:hover,
.button-header:hover {
    text-decoration: underline;
    color: #8e7878;
}

.carousel-container {
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 100vw;
    scroll-snap-align: start;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.carousel-container>button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    width: 40%;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
}

.carousel-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.carousel-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-info a {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    text-decoration: none;
    transition: all .3s ease;
}

.carousel-info a:hover {
    text-decoration: underline;
    opacity: 0.6;
}

.carousel-info .btn-default-home {
    background-color: #0067b8;
    color: #fff;
    padding: 10px 12px;
    font-weight: 500;
    border: none;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.carousel-info .btn-default-home:hover {
    opacity: 0.7;
}

.links-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    width: 100%;
}

.links-3 div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.links-3 img {
    height: 80px;
    margin-top: 40px;
}

.links-3 a {
    color: #0067b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all .3s ease;
}

.links-3 a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 16px 60px;
    max-width: 1180px;
    margin: 0 auto;
}

.card {
    flex: 0 0 260px;
    width: 260px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.card-infos {
    padding: 20px;
    display: flex;
    align-items: stretch;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.btn-default-link {
    display: inline-block;
    padding: 12px 16px;
    background-color: #0067b8;
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all .3s ease;
}

.btn-default-link:hover {
    background-color: #004a8f;
    opacity: 0.7;
}

.banner {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 100%;
    max-width: 1500px;
}

.banner .card-infos {
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
}

.banner .card-title {
    font-size: 1.5rem;
}

.banner .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.banner .btn-default-link {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}

.social-medias ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-medias p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.social-medias img {
    width: 50px;
    transition: all .3s ease;
}

.social-medias img:hover {
    opacity: 0.7;
}

.btn-start {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    margin-bottom: 10px;
}

.btn-start a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    font-weight: 500;
    transition: all .3s ease;
}

.btn-start a:hover {
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;
}

.footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
    gap: 15px;
}

.footer .bold {
    font-weight: 500;
    font-size: 1.2rem;
}

.footer a {
    text-decoration: none;
    color: #333;
    font-size: .8rem;
    transition: all .3s ease;
}

.footer a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ddd;
}

@media (max-width: 1024px) {
    .carousel-info {
        width: 50%;
    }

    .links-3 {
        gap: 40px;
    }
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #262626;
    padding: 5px;
}

@media (max-width: 768px) {
    .main-header {
        justify-content: space-between;
        position: relative;
        padding: 10px 20px;
    }

    .main-header .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #f2f2f2;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 10px 0;
    }

    .main-header .main-nav.active {
        display: flex;
    }

    #main-nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    #main-nav-menu li {
        width: 100%;
    }

    .main-header .utility-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        width: 100%;
        background-color: #f2f2f2;
        gap: 0;
    }

    .main-header .utility-nav li {
        width: 100%;
    }

    .main-header .utility-nav a,
    .main-header .utility-nav .button-header {
        padding: 10px 20px;
        display: block;
        width: 100%;
        text-align: left;
    }

    #main-nav-menu a {
        padding: 10px 20px;
        display: block;
    }

    .carousel-item img {
        height: 40vh;
    }

    .carousel-info {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        background: #f2f2f2;
        text-align: center;
    }

    .carousel-info .btn-default-home {
        margin: 10px auto;
    }

    .links-3 {
        gap: 20px;
        padding: 0 20px;
    }

    .hamburger-menu {
        display: block;
    }

    .social-medias ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 5%;
    }

    .footer ul {
        margin: 15px 0;
        align-items: flex-start;
    }
}