:root {
    --primary-color: #1a5f7a;     /* Biru Tua */
    --accent-color: #57a6a1;      /* Tosca Hijau Laut */
    --bg-light: #f7f9fb;
    --text-main: #333;
    --text-muted: #666;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-main: 'Poppins', sans-serif;
  }

/* ===== MIH ABOUT SECTION ===== */
#mih-about {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #eef4f8);
    font-family: 'Poppins', sans-serif;
    color: #333;
    transition: background 0.3s ease;
  }
  
  #mih-about .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color, #1a5f7a);
    margin-bottom: 0.5rem;
    position: relative;
  }
  
  #mih-about .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: var(--accent-color, #57a6a1);
    display: block;
    margin: 0.5rem auto 1rem auto;
    border-radius: 2px;
  }
  
  #mih-about .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
  }
  
  /* Grid Layout untuk Visi & Misi */
  .about-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
  }
  
  .about-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    max-width: 500px;
    flex: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e6ecf0;
  }
  
  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }
  
  .card-icon {
    font-size: 2.8rem;
    color: var(--accent-color, #57a6a1);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }
  
  .card-title {
    font-size: 1.6rem;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
  }
  
  .card-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
  }
  
  .card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444;
  }
  
  .card-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #57a6a1;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  /* Sambutan */
  .sambutan-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  
  .sambutan-photo img.kepsek-photo {
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 4px solid #fff;
    transition: transform 0.3s ease;
  }
  
  .sambutan-photo img.kepsek-photo:hover {
    transform: scale(1.03);
  }
  
  .sambutan-text {
    flex: 1;
    min-width: 260px;
  }
  
  .about-author {
    margin-top: 1rem;
    font-weight: 600;
    color: #1a5f7a;
    font-style: italic;
  }
  
  /* Sejarah dan About */
  .about-sejarah, .about-profile, .about-keunggulan {
    margin-bottom: 3rem;
  }
  
  .about-subtitle {
    font-size: 1.6rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .about-text {
    line-height: 1.75;
    font-size: 1rem;
    color: #444;
    max-width: 850px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-grid {
      flex-direction: column;
    }
  
    .sambutan-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .sambutan-photo img.kepsek-photo {
      width: 160px;
    }
  
    #mih-about .section-title {
      font-size: 2.2rem;
    }
  
    .card-title {
      font-size: 1.4rem;
    }
  }