.navbar {
    position: sticky;
    top: 0;
    background-color: #f3e5f5;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.navbar .logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar .brand-name {
    color: #703070;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar a {
    color: #c07c16;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #703070;
}

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

.support-link {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    color: #703070;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid #703070;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.support-link:hover {
    background-color: #db8fdb;
    color: white;
}

.cta-button {
    background: #703070;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #db8fdb;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 30px;
    }

    .nav-left, .nav-right {
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin-bottom: 10px; 
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .support-link, .cta-button {
        width: 100%; 
        text-align: center;
        margin-top: 10px; 
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        height: 30px;
    }

    .support-link, .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
        margin-top: 10px; 
    }

    .navbar {
        padding: 10px 20px;
    }

    .nav-left, .nav-right {
        margin-bottom: 15px; 
    }
}
