/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #0A542C;
}

/* Banner */
.banner {
  width: 100%;
  padding: 56px 0 40px; 
}

.banner-img {
  width: 100%;
  max-width: 1280px;
  height: 450px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* About Us */
.about {
  text-align: center;
}

.about h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 32px;
}

.about .subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 30px;
}

.about p {
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.about .light {
  color: #FFF700;
}

.about .desc {
    margin-top: 20px;
}

.contact {
    padding: 31px 0 79px;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.contact .contact-item {
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, #0A542C 0%, #007D34 100%);
    border-radius: 0px 28px 28px 0px;
    width: 294px;
    height: 44px;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}

.contact .contact-img {
    margin-top: 9px;
    margin-right: 12px;
}

.contact a {
    text-decoration: none;
    color: #fff;
}

.hidden-xs {
    display: block;
}

.hidden-lg {
    display: none;
}

/* Responsive Design: Mobile and Tablet */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    .banner {
        padding:0 0 40px; 
    }

    /* Banner */
    .banner-img {
        height: auto;
    }

    /* Title uniformly reduced */
    h2 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
    h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    /* About Us */
    .about {
        padding: 0px 36px;
    }
    .about p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 8px;
    }

    .contact {
        padding: 40px 0 189px;
        flex-direction: column;
        gap: 24px;
    }

    .contact .contact-item{
        margin: auto;
        font-size: 16px;
    }

    .hidden-xs {
        display: none;
    }

    .hidden-lg {
        display: block;
    }
}