body {
    margin: 0 !important;
    padding: 0 !important;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.top-bar {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar span {
    margin-right: 20px;
}
.contact-info{
    width: 50%;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li, .menu a {
    color: #000;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.menu li.active{
    color: #ffce40;
}
.hero {
    height: 50vh !important;
    background: url("../image/eb6c7c01c4e98e1f2578f9959463b973.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-text {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
}

.info-section {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.box {
    padding: 12px 30px;
    color: white;
}
.btn-green{
    background-color: #055e5e;
}
.btn-red{
    background-color: #862c11;
}
.btn-green:hover{
    background-color: #014646;
}
.btn-red:hover{
    background-color: #75230a;
}
.applicants { background: #6b5b00; }
.programmes { background: #4a0f17; }
.mandate    { background: #074286; }

.box h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.box p {
    line-height: 1.6;
}

.box a {
    color: #fff;
    text-decoration: none;
}

footer {
    background: #222;
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 13px;
}
@media (max-width: 600px) {
  .info-section{
    flex-direction: column;
  }
  .top-bar {
    flex-direction: column;
    height: 80px;
  }
}