html {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
font-family: "Montserrat", sans-serif; /* Apply Montserrat font globally */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Cleaner background color */    
    align-items: center;
}



/* header section */
.header-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    box-sizing: border-box;
    z-index: 1000;
    max-height: 120px;
    background-color:#58cced;
}

.header-bar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    transform: translateY(-20px);
    margin: 10px;
}

.header-bar ul {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style: none;
    display: flex;
    align-items: right;
    margin: 0;
    padding: 0;
    top: 50%;
    right: 2%;
    position: absolute;
}

.header-bar li {
    margin: 0 10px;
    display: inline-block;
    position: relative;
}
.nav-link {
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 15px;
}

/* Mobile menu styles */
.menu-button {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.nav-bar {
    display: flex;
    flex-direction: row;
}

.nav-bar ul {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background-color: #58cced;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-bar.active {
        right: 0;
    }

    .nav-bar ul {
        flex-direction: column;
        gap: 15px;
        top: 80%;
    }

    .nav-link {
        font-size: 18px;
        color: #000;
        text-decoration: none;
    }
}
/* Privacy Policy Section */

.privacy {
    max-width: 1000px;
    margin: 0 auto; 
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding-left: 50px;
    ;
}
.privacy {
    margin-top: 50px; /* Adds space between the privacy section and the header */
}
.privacy h1 {
    font-size: 50px;
    font-weight: 700;
    color: #333333; 
    margin-bottom: 20px; 
}

.privacy p {
    font-size: 18px;
    line-height: 1.6; 
    color: #555555; 
    margin-bottom: 15px; 
}

.privacy ul {
    list-style-type: disc; 
    padding-left: 20px; 
}
.privacy ul li {
    margin-bottom: 10px; 
}
.privacy a {
    color: #007bff; 
    text-decoration: none; 
}

.privacy-box {
    max-width: 800px;
    margin: 50px auto; 
    padding: 30px;
    background-color: #ffffff; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    line-height: 1.6; 
}

.privacy-box h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #4fbedd;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-box p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
}

.privacy-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-box ul li {
    margin-bottom: 10px;
}

.privacy-box a {
    color: #007bff;
    text-decoration: none;
}

.privacy-box a:hover {
    text-decoration: underline;
}
