/* ===========================
   Global Styles
   =========================== */
* {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  width: 100%;
  height: 25vh;
  padding: 20px 10px 0;
}

.hero-section .hero-wrapper {
  width: 100%;
  height: 100%;
  padding: 0 30px 0px 20px;
  background-color: var(--bg-lightcoral);
  border-radius: 20px;
  display: flex;
}

.hero-section .hero-content {
  position: relative;
  top: 15%;
  width: 100%;
}

/* ===========================
   Main Container
   =========================== */
#main {
  width: 100%;
}

/* ===========================
   Row 1 - Authority Section
   =========================== */
.row1 {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.row1 .image {
  padding: 20px 10px 0;
}

.row1 .img {
  width: 100%;
  height: 60vh;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* Authority Card Section */
.row1 .authority-section {
  display: flex;
  justify-content: center;
  z-index: 5;
  position: relative;
  top: -150px;
}

.row1 .authority-card {
  background: #a9e2c1;
  max-width: 750px;
  width: 90%;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: 0.3s ease;
}

.row1 .authority-card:hover {
  transform: translateY(-4px);
}

.row1 .authority-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.row1 .authority-header h2 {
  margin: 0;
}

.row1 .authority-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.row1 .authority-points li {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #374151;
}

.row1 .authority-btn {
  text-align: center;
}

.row1 .review-btn {
  border: 2px solid #111827;
  background-color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.6rem;
  color: #111827;
  transition: 0.3s ease;
}

.row1 .review-btn:hover {
  background: #a9e2c1;
  color: #fff;
}

/* ===========================
   Network Section
   =========================== */
.network {
  padding: 60px 20px;
}

.network-card {
  padding: 40px 30px 30px;
  background-color: #EAF9FF;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.network-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.network-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.network-item {
  align-items: flex-start;
}

/* ===========================
   Health Section
   =========================== */
.health {
  padding: 0 20px 30px;
}

.health-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.health-image {
  width: 100%;
  padding: 0 10px;
}

.health-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.health-card {
  padding: 40px 30px 30px;
  border-radius: 20px;
  background-color: #CEEBBD;
}

.health-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}

.health-header .title {
  font-size: 2.3rem;
  font-weight: 800;
}

.health-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

.health-item p {
  font-size: 1.6rem;
  font-weight: 600;
}

/* ===========================
   Delivery Section
   =========================== */
.delivery {
  padding: 0 20px 30px;
}

.delivery-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.delivery-image {
  width: 100%;
  padding: 0 10px;
}

.delivery-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.delivery-card {
  padding: 40px 30px 30px;
  border-radius: 20px;
  background-color: #CEEBBD;
}

.delivery-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}

.delivery-header .title {
  font-size: 2.3rem;
  font-weight: 800;
}

.delivery-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

.delivery-item p {
  font-size: 1.6rem;
  font-weight: 600;
}

/* ===========================
   Giveback Section
   =========================== */
.giveback {
  padding: 60px 20px;
}

.giveback-card {
  padding: 40px 30px 30px;
  background-color: #A9E2C1;
  border-radius: 20px;
}

.giveback-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.giveback-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.giveback-item {
  align-items: flex-start;
}

/* ===========================
   Gallery / Images Section
   =========================== */
.gallery .col1 img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: center 5%;
  border-radius: 25px;
}

.gallery .col2 img {
  height: 415px;
  width: 100%;
  object-fit: cover;
  object-position: center 5%;
  border-radius: 25px;
}

/* ===========================
   Responsive Design (1024px+)
   =========================== */
@media (min-width: 1024px) {
  /* Hero Section */
  .hero-section {
    padding: 20px 20px;
  }

  .hero-section .hero-wrapper {
    height: fit-content;
    border-radius: 30px;
    padding: 100px 0 100px 250px;
  }

  .hero-section .hero-content {
    width: 60% !important;
  }

  /* Main Container */
  #main {
    width: 75%;
    display: block;
    margin: 0 auto;
  }

  /* Row 1 / Authority Section */
  .row1 {
    justify-content: center;
  }

  .row-wrapper {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .row1 .image {
    padding: 0;
  }

  .row1 .img {
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
  }

  .row1 .authority-section {
    top: auto;
    left: -150px;
  }

  .row1 .authority-header img {
    width: 100px;
    height: auto;
  }

  /* Network Section */
  .network {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .network-card {
    padding: 60px 30px;
    width: 100%;
  }

  .network-header {
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .network-header .title h2 {
    font-size: 3.0rem !important;
  }

  .network-header img {
    width: 100px;
    height: auto;
  }

  .network-items {
    width: 80%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 0;
  }

  .network-item {
    align-items: center;
    text-align: center;
    width: 300px;
  }

  /* Health Section */
  .health-container {
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 80px;
  }

  .health-image {
    flex: 1;
  }

  .health-image img {
    width: 300px;
    height: auto;
  }

  .health-card {
    flex: 1;
    padding: 50px 40px;
    box-shadow: none;
  }

  .health-card .health-icon img {
    width: 100px;
    height: auto;
  }

  .health-items {
    padding-left: 30px;
  }

  /* Delivery Section */
  .delivery-container {
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 80px;
  }

  .delivery-image {
    flex: 1;
  }

  .delivery-image img {
    width: 380px;
    height: auto;
  }

  .delivery-card {
    flex: 1;
    padding: 50px 40px;
    box-shadow: none;
  }

  .delivery-card .health-icon img {
    width: 100px;
    height: auto;
  }

  .delivery-items {
    padding-left: 30px;
  }

  /* Giveback Section */
  .giveback {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .giveback-card {
    padding: 60px 30px;
    width: 100%;
  }

  .giveback-header {
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .giveback-header .title h2 {
    font-size: 3.0rem !important;
  }

  .giveback-header img {
    width: 100px;
    height: auto;
  }

  .giveback-items {
    width: 80%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 0;
  }

  .giveback-item {
    align-items: center;
    text-align: center;
    width: 300px;
  }

  /* Gallery / Images Section */
  .gallery {
    padding: 10px 20px;
  }

  .gallery .col1 img {
    height: 300px;
  }

  .gallery .col2 img {
    height: 615px;
  }
}
