nav {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    padding: 10px 100px;
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.navigation-body {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Limit the maximum width */
    justify-content: space-between;
}

.navbar-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin-right: 150px;
}

.navbar-nav li {
    margin-left: 65px;
}

.navbar-nav a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block; /* Make the link cover the whole list item */
    padding: 10px 0; /* Add padding for better spacing */
}

.tukilo {
    height: 44px;
    width: 120px;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: #180875b6;
    margin: 4px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }

    .navigation-body {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%; /* Set to 100% to match the navbar width */
        position: absolute;
        top: 72px; /* Adjust based on the height of the nav */
        background-color: white;
        left: 0;
        padding: 10px;
    }

    .navbar-nav li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-nav a:hover {
        background-color: #ddd;
        color: black;
    }

    .menu-toggle {
        display: flex;
    }
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 400px;
    background-color: rgb(231, 241, 248);
    margin: 120px auto 0 auto; /* Center and set top margin */
    height: 350px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px; /* Add padding for better spacing */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-container {
        width: 90%; /* Adjust width for smaller screens */
        max-width: none; /* Remove max-width restriction */
        margin-top: 60px; /* Adjust top margin */
        height: auto; /* Allow height to adjust automatically */
    }
}

@media (max-width: 480px) {
    .main-container {
        width: 100%; /* Use full width for very small screens */
        margin-top: 30px; /* Further adjust top margin */
    }
}

/* Footer css */
/* Footer css */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    max-width: 1200px;  /* Add this */
    margin: 0 auto;     /* Add this */
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-left p {
    margin: 0;
    margin-right: 15px;
    font-size: 14px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons a img {
    width: 25px;
    height: 25px;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-right a {
    margin-left: 15px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.footer-right a:hover {
    color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .footer-left {
        margin: 0;
        margin-bottom: 10px;
    }

    .footer-left p {
        margin-right: 0;
    }

    .footer-right {
        margin-top: 10px;
        justify-content: center;
    }

    .footer-right a {
        margin: 0 10px;
    }
}
