:root {
    --primary-color: #2196F3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #051525;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* nav */
#open {
    display: none;
}


.logo img {
    width: 35px;
    height: 35px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background-color: #f6fbfe;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.788);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.logo .span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
}

.nav-links .active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin-top: 1px;

}

.auth-buttons .btn {
    margin-left: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
}

.sign-in {
    border: none;
    color: black;
    background-color: #fff;
    box-shadow: rgb(190, 188, 188) 1px 1px 1px;
}

.sign-up {
    background: var(--primary-color);
    color: #fff;
    box-shadow: #007bff 1px 1px 1px;
}






/* Responsive Navbar Styles */
@media (max-width: 900px) {
    .responsive-head {
        display: flex;
        justify-content: space-between;
    }

    .navbar {
        padding: 22px 15px;
    }

    .auth-buttons {
        display: flex;
    }

    #open {
        display: flex;
    }

    .navbar #big {
        display: none;
    }

    #open {
        display: block;
        background: white;
        padding: 6px;
        border-radius: 6px;
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
        outline: none;
        font-size: 20px;
        cursor: pointer;
        color: #4F5D69;
        border: none;
    }

    #close {
        border: none;
    }

    .responsive {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 16px 20px;
        animation: slideDown 0.3s;
        overflow-y: hidden;
    }

    .responsive .links1 .active::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        margin-top: 1px;
    }

    .responsive .links1 li {
        width: 100%;
        text-align: center;
    }

    .responsive.show {
        display: flex;
    }

    .responsive-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .auth-buttons {
        display: flex;
        justify-content: center;
        gap: 30px;

    }

    .auth-buttons .btn {
        padding: 12px 10px;
        border-radius: 8px;
        text-decoration: none;

    }

    .sign-in {
        color: #000;
        background-color: #fff;
        box-shadow: rgb(190, 188, 188) 1px 1px 1px;
        font-size: 15px;
        text-align: center;
        width: 100%;
    }

    .sign-up {
        background: var(--primary-color);
        color: #fff;
        box-shadow: #007bff 1px 1px 1px;
        font-size: 15px;
        text-align: center;
        width: 100%;
    }

    .logo a span {
        font-size: 20px;
    }

    .responsive ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .responsive ul li a {
        color: #333;
        text-decoration: none;
        font-size: 15px;
    }

    .responsive #close {
        background: none;
        padding: 5px;
        border-radius: 5px;
        font-size: 25px;
        cursor: pointer;
        color: #524f4f;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container {
    background-color: #F6FBFE;
    padding: 40px;
    color: #374151;
}

.container .header h1 {
    font-size: 29px;
    line-height: 40px;
}

.container .acceptance-text {
    font-size: 19px;
    line-height: 24px;
}

.bodytext-1 h6 {
    font-size: 19px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 12px;
    line-height: 20px;
}

.header .time {
    font-size: 15px;
    color: #374151;
    padding-top: 10px;
}

.welcome-note {
    font-size: 19px;
    padding-top: 20px;
    line-height: 24px;
}

ul {
    font-size: 19px;
    line-height: 24px;
}

ul .description {
    list-style: none;
}

.container a {
    text-decoration: none;
    font-size: 19px;
    color: #374151;
}

.container ul .bullet-point {
    margin-left: 30px;

}

@media(max-width: 768px) {
    .container {
        padding: 20px;
    }

    .container .acceptance-text {
        font-size: 15px;
    }

    .bodytext-1 h6 {
        font-size: 15px;
        line-height: 20px;
        padding-top: 20px;
    }

    .welcome-note {
        font-size: 15px;
    }

    .container .header h1 {
        font-size: 20px;
        line-height: 36px;
    }

    ul {
        font-size: 15px;
    }

    .header .time {
        font-size: 15px;
    }

    .container a {
        font-size: 15px;
    }
}