﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}



body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
    background: #d7f6ff;
}

p {
    margin-bottom: 10px;
}

strong {
    color: #2c3e50;
    font-size: 1rem;
}


.zet-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.zet-section li {
    margin-bottom: 15px;
    position: relative;
    list-style-type: none;
    padding-left: 35px;
}

    .zet-section li::after {
        content: "";
        position: absolute;
        left: 9px;
        top: 5px;
        width: 5px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .zet-section li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 22px;
        height: 22px;
        background-color: #3498db;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

li p {
    margin-bottom: 5px;
}

.container {
    max-width: 1245px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.header {
    color: white;
    padding: 0.1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.zet-section {
    margin: 3rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2.2rem;
    color: #4cdb79;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #5e5d5d;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #4cdb79;
    }

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #e5e0e0;
}

    .dropdown-item:last-child {
        border-bottom: none;
    }

.dropdown-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    transition: all 0.3s;
}

    .dropdown-link:hover {
        color: #2d5bbd;
        background-color: #f8f9fa;
        padding-left: 1.4rem;
    }

.dropdown-icon {
    color: #2d5bbd;
    font-size: 1.1rem;
    width: 20px;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-login {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .btn-login:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.btn-signup {
    background-color: #0551b1;
    color: white;
    text-decoration: none;
}

    .btn-signup:hover {
        background-color: #3bc069;
    }

/* Hamburger open span - top left */
#menu-open-span {
    position: fixed;
    top: 1rem;
    left: 1rem;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    display: none; /* visible only on mobile */
}

    #menu-open-span svg {
        width: 28px;
        height: 28px;
        stroke: #3a3434;
        display: none;
    }

/* Close span inside menu */
#menu-close-span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    padding: 0;
    z-index: 1101;
    display: none; /* visible only on mobile menu */
}

    #menu-close-span svg {
        width: 28px;
        height: 28px;
        stroke: white;
    }

.page-header {
    display: flex;
    width: 100%;
    background: linear-gradient(159deg, rgba(0, 0, 128, 1) 0%, rgba(0, 191, 255, 1) 100%);
    padding-left: 150px;
    padding-right: 150px;
    gap: 20px;
}

.content-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section {
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    margin-top: 60px;
    margin-bottom: 50px;
    padding: 20px;
}

    .form-section label {
        display: block;
        margin-bottom: 2px;
        font-weight: 600;
        color: #5d5e5e;
        margin-top: 10px;
    }

.content-section h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    line-height: 4.3rem;
}

.content-section p {
    color: #ffffff;
}

.apply-now-btn {
    background: linear-gradient(45deg, #FF512F, #F09819);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 152, 25, 0.4);
    z-index: 10;
    margin-top: 20px;
    width: auto;
    display: inline-block;
}

    .apply-now-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(240, 152, 25, 0.6);
    }

.btn-div {
    margin-top: 20px;
    margin-bottom: 15px;
}

.btn-submit {
    background: #0551b1;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    text-decoration: none;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        color: white;
    }

.accept-policy {
    margin-top: 30px;
    color: #7f8c8d;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    input:focus {
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        outline: none;
    }

/* Mobile styles */
@media (max-width: 950px) {
    .logo {
        display: flex;
        align-items: center;
        gap: 5rem;
        margin-left: 6rem;
    }

    #menu-open-span svg {
        width: 28px;
        height: 28px;
        stroke: #3a3434;
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        background-color: #1a3a8f;
        width: 320px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 4rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-item {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
        color: #ffff;
    }

    .menu-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        border-radius: 0;
        background-color: #0f2a6d;
    }

    .nav-item.active .menu-dropdown {
        max-height: 500px;
    }

    .dropdown-item {
        padding-left: 3rem;
        border-bottom: 1px solid #4e4c4c;
    }

    .dropdown-link {
        color: white;
    }

        .dropdown-link:hover {
            color: #4cdb79;
            background-color: rgba(255, 255, 255, 0.1);
        }

    .dropdown-icon {
        color: #4cdb79;
    }

    .header-buttons {
        display: none;
    }

    /* Show hamburger span when menu is closed */
    #menu-open-span {
        display: block;
    }

    /* Show close span inside menu when active */
    .nav-menu.active #menu-close-span {
        display: block;
    }
    .page-header {
        flex-direction: column;
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-section {
        max-width: 100%;
        margin-top: 20px;
        box-shadow: none;
    }
    .content-section {
         
        padding: 50px 0px;
        
    }
        .content-section h1 {
            font-size: 2.5rem;
          
            line-height: 3.2rem;
        }
    .apply-now-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
     
}
