/* =========================
   ABOUT SECTION (UPDATED)
========================= */

.about-section{
  padding: 60px 10px;   /* side spacing reduced */
  background: #f9f9f9;
}

.about-container{
  max-width: 1200px;   /* thoda wide + balanced */
  margin: 0 auto;
  padding: 0 10px;     /* inner side spacing control */
}

.about-content h2{
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p{
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.about-box{
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid #000;
}

/* =========================
   MV SECTION
========================= */

.mv-wrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.mv-card{
  position: relative;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(0,128,0,0.08);
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.mv-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.mv-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,#0b7a3d,#19b36b);
}

.mv-icon{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg,#0b7a3d,#19b36b);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(25,179,107,0.25);
}

.mv-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #19b36b;
  margin-bottom: 12px;
}

.mv-card h3{
  font-size: 30px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 15px;
  font-weight: 700;
}

.mv-card h3 span{
  color: #19b36b;
  display: block;
}

.mv-card p{
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 768px){

  .about-section{
    padding: 40px 8px;
  }

  .about-container{
    padding: 0 8px;
  }

  .mv-card{
    padding: 28px 20px;
  }

  .mv-card h3{
    font-size: 24px;
  }
}
.footer-bottom{
  width:100%;
  padding:1.5rem 5rem 1.5rem;

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* LEFT COPYRIGHT */
.footer-bottom p{
  color:rgb(0, 0, 0);
  font-size:0.78rem;
  margin:0;
}

/* RIGHT LINKS */
.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:1.5rem;
  margin-left:auto;
}

.footer-bottom-links a{
  color:white;
  font-size:0.78rem;
  text-decoration:none;
  transition:0.3s;
}

.footer-bottom-links a:hover{
  color:var(--green-light);
}

/* MOBILE */
@media(max-width:768px){

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-bottom-links{
    margin-left:0;
    justify-content:center;
    flex-wrap:wrap;
    gap:1rem;
  }

}

b, strong {
  font-weight: 700 !important;
}