/* General styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #5fd2ff, #ccf0ff, #5fd2ff, #ccf0ff, #ccf0ff);
    color: #000;
    padding: 0;
    margin: 0;
}


/* Styles for devices with a maximum width of 600px */

@media only screen and (max-width: 600px) {
    /* Header styles */
    .header {
        background-color: #5fd2ff;
        padding: 2px 0;
        position: relative;
    }

    .header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    .logo img {
        margin-top: 70px;
        width: 170px;
        height: auto;
    }


/* Social media icons */
.header-number {
    position: absolute;
    top: 0px;
    left: 20px;
    padding: 5px;
    border: 1px solid #5fd2ff;
    color: #000;
    background: #5fd2ff;
    border-radius: 5px;
    list-style: none;
    margin-top: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}



.header-number h3 {
    font-size: 15px;
    margin-left: 10px;
    margin-right: 10px;
}

.header-number a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust the size of your social media icons */
    height: 30px; /* Adjust the size of your social media icons */
    margin-right: 10px;
    color: #000; /* Social media icon color */
    text-decoration: none;
    border: 1px solid #000; /* Border color */
    border-radius: 50%; /* Make the icons circular */
}

.header a:hover {
    background-color: #000; /* Background color on hover */
    color: #fff; /* Text color on hover */
    text-decoration: none;

}

    .burger-menu {
        color: #000;
        display: flex;
        align-items: center;
        position: absolute;
        right: 40px;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 26px; /* Adjust the font size as needed */
        height: 45px; /* Adjust the height as needed */
        width: 45px; /* Adjust the width as needed */
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #fff;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0; /* Align menu links to the top */
        right: 0; /* Position menu on the right side */
        width: 50%; /* Limit menu width to 50% of the screen */
        max-width: 400px; /* Limit menu width to 400px */
        background-color: #fff;
        border-radius: 10px;
        padding: 10px;
    }

    /* Show menu links when active */
    .menu-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: auto;
        bottom: 0;
        right: 0;
        width: 50%;
        background-color: rgba(143, 223, 255, 0.9); /* Semi-transparent white background */
        z-index: 1000; /* Ensure the menu is on top of other content */
        padding: 20px; /* Adjust padding as needed */
    }

    .menu-links.active a {
        text-decoration: none;
        color: #000;
        font-size: 24px; /* Adjust font size as needed */
        text-align: center; /* Center-align the links */
        margin-bottom: 30px; /* Add spacing between menu items */
        margin-top: 10px; /* Add spacing between menu items */
    }

    .menu-links.active #back-button {
        margin-top: 100px; /* Adjust the position of the back button */
    }


/* Footer styles */
.footer {
    background: linear-gradient(to top, #5fd2ff, #ccf0ff);
    padding: 20px;
    text-align: center;
    color: #000; /* Footer text color */
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #000; /* Footer links text color */
    text-decoration: none;
}

/* Ensure the parent container of .footer-social is a flexbox container */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Social media icons */
.footer-social {
    list-style: none;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the icons within the .footer-social */
    text-decoration: none;
}

.footer-social h3 {
    margin-right: 10px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust the size of your social media icons */
    height: 30px; /* Adjust the size of your social media icons */
    margin-right: 10px;
    color: #000; /* Social media icon color */
    text-decoration: none;
    border: 1px solid #000; /* Border color */
    border-radius: 50%; /* Make the icons circular */
}

.footer-social a:hover {
    background-color: #000; /* Background color on hover */
    color: #fff; /* Text color on hover */
    text-decoration: none;
}

.footer-social a i {
    font-size: 20px; /* Adjust the size of the Font Awesome icons */
    text-decoration: none;
}



.footer-legal {
    margin-right: 30px;
    margin-top: 10px;
}

.text-body-2.legal {
    display: inline-block;
    margin-left: 20px;
    color: #7A7D85;
}

}