* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Blue Navbar */
.blue-navbar {
    height: 50px;
    width: 100%;
    background-color: #343A40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.left-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.left-content a {
    color: white;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
}

.left-content a:hover {
    color: orange;
    text-decoration: underline;
}

.middle-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.middle-content a {
    color: white;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
}

.middle-content a:hover {
    color: orange;
    text-decoration: underline;
}

.middle-bar {
    height: 30px;
    width: 1px;
    background-color: white;
}

.right-content a {
    color: white;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
}

.right-content a:hover {
    color: orange;
    text-decoration: underline;
}

/* White Navbar */
.white-navbar {
    height: 90px;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.left-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-logo img {
    height: 60px;
    width: auto;
}

.logo-content a {
    color: black;
    text-decoration: none;
}

.logo-content a h4 {
    font-weight: 500;
}

.logo-content p {
    font-size: 12px;
}

.right-image-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.image-content-one {
    display: flex;
    align-items: center;
    gap: 10px;
}

.name h4 {
    font-size: 14px;
    font-weight: 500;
}

.name p {
    font-size: 12px;
}

.image-content-one img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

/* Main Navigation */
.main-nav {
    background-color: #019f40;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.logos {
    display: flex;
    gap: 10px;
}

.nav-logo {
    height: 30px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Main Container */
.main-container {
    background-image: url("main-container background2.jpg");
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    display: flex;
    gap: 20px;
}

.main-btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: #019f40;
    color: white;
    border: 2px solid #019f40;
}

.login-btn:hover {
    background-color: #019f40;
    border-color: #019f40;
}

.learn-btn {
    background-color: transparent;
    color: #019f40;
    border: 2px solid #019f40;
}

.learn-btn:hover {
    background-color: #019f40;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .blue-navbar {
        padding: 0 10px;
    }
    
    .right-image-content {
        gap: 10px;
    }
    
    .image-content-one img {
        width: 50px;
        height: 50px;
    }
    
    .name h4 {
        font-size: 12px;
    }
    
    .name p {
        font-size: 10px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 190px;
        left: 0;
        right: 0;
        background-color: #019f40;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .right-image-content {
        display: none;
    }
    
    .middle-content {
        gap: 10px;
    }
    
    .middle-content a:not(:first-child):not(:nth-child(2)) {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .left-content, .middle-content {
        gap: 5px;
    }
    
    .left-content a, .middle-content a {
        font-size: 12px;
    }
    
    .logo-content h4 {
        font-size: 14px;
    }
    
    .logo-content p {
        font-size: 10px;
    }
    
    .left-logo img {
        height: 40px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}