body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8f8f8;
}

.regis .navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d2b21;
    padding: 14px 36px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(13, 43, 33, 0.06);
    position: relative;
    z-index: 10;
}

.agrix-white-write {
    height: 44px;
    width: auto;
    margin-right: 28px;
    display: block;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    gap: 18px;
}

.nav-links a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
}

.nav-links a:hover {
    background: #e2b64922;
    color: #e2b649;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.text-wrapper-11 {
    /* How to Trade */
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
}

.text-wrapper-11:hover {
    background: #e2b64922;
    color: #e2b649;
}

.frame-5 {
    margin-left: 8px;
}

.text-wrapper-12 {
    /* Get Started Button */
    background: linear-gradient(90deg, #e2b649 60%, #c1a149 100%);
    color: #0d2b21;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-decoration: none;
}

.text-wrapper-12:hover {
    background: linear-gradient(90deg, #c1a149 60%, #e2b649 100%);
    color: #fff;
    box-shadow: 0 4px 16px #e2b64955;
}


/* Hamburger styles */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    gap: 6px;
    margin-left: 18px;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #e2b649;
    border-radius: 2px;
    transition: 0.3s;
}


/* Hamburger animation */

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* Tablet styles */

@media (max-width: 900px) {
    .regis .navbar {
        padding: 10px 12px;
        position: relative;
    }
    .hamburger {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }
}


/* Mobile styles */

@media (max-width: 700px) {
    .regis .navbar {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: flex-start;
        padding: 8px 4vw;
        position: relative;
    }
    .hamburger {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }
    .navbar-left {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex: 1 1 100%;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: #0d2b21;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 2px 8px #e2b64955;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        display: none;
        z-index: 100;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        padding: 14px 24px;
        border-bottom: 1px solid #eee;
        font-size: 1.08rem;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .navbar-right {
        position: absolute;
        top: calc(60px + 48px * 3);
        /* below nav-links */
        right: 0;
        width: 100vw;
        background: #0d2b21;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 2px 8px #e2b64955;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        display: none;
        z-index: 100;
    }
    .navbar-right.open {
        display: flex;
    }
    .text-wrapper-11,
    .frame-5 {
        width: 100%;
        padding: 14px 24px;
        border-bottom: 1px solid #eee;
    }
    .frame-5 {
        border-bottom: none;
    }
    .hamburger {
        display: flex;
    }
}