/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #E6D24B; /* India-preferred vibrant orange */
}
.logo-vbfvs5cn {
    display: flex;
    align-items: center;
}
.loginImg-vbfvs5cn {
    height: 50px;
    margin-right: 10px;
}
nav.vbfvs5cn ul {
    display: flex;
    list-style: none;
}
nav.vbfvs5cn ul li {
    margin-left: 20px;
    position: relative;
}
nav.vbfvs5cn ul li a {
    font-weight: bold;
    color: #fff;
}
nav.vbfvs5cn ul li a:hover {
    background: var(--accent);
    color: #fff;
}
/* Dropdown menu for PC */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #E6D24B;
    min-width: 180px;
    z-index: 1000;
}
.dropdown-content a {
    display: block;
    padding: 10px;
    color: #333;
}
li.dropdown:hover .dropdown-content {
    display: block;
}
/* Mobile menu */
.mobile-menu-vbfvs5cn {
    display: none;
    flex-direction: column;
    background-color: #E6D24B;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.mobile-menu-vbfvs5cn li {
    margin: 10px 0;
}
.menu-toggle-vbfvs5cn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}
/* Footer */
footer.vbfvs5cn {
    background-color: #E6D24B;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}
footer.vbfvs5cn ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}
footer.vbfvs5cn ul li {
    margin: 0 15px;
}
/* Responsive */
@media (max-width: 768px) {
    nav.vbfvs5cn ul { display: none; }
    .menu-toggle-vbfvs5cn { display: block; }
    .mobile-menu-vbfvs5cn { display: none; }
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
h1, h2, h3 {
	color: #fff;
    font-family: 'Segoe UI Semibold', Arial, sans-serif;
    margin-top: 0.3em;
}
h1 {
    font-size: 2.3em;
}
h2 {
    font-size: 1.6em;
    margin-bottom: 0.5em;
}
h3 {
    font-size: 1.17em;
}
p {
    font-size: 1.06em;
    line-height: 1.70;
    margin-bottom: 1.2em;
}
ul {
    margin-bottom: 1.2em;
    padding-left: 1.1em;
}
header, footer {
    width: initial; height: 80px;
}
