/* Styles for about.html */

    /* ===== ABOUT HERO ===== */
    #about-hero {
      position: relative;
      min-height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }
    #about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,60,35,0.88) 0%, rgba(15,81,50,0.75) 50%, rgba(0,0,0,0.5) 100%);
      z-index: 1;
    }
    #about-hero .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 60px 20px;
    }
    #about-hero .hero-content h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 14px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    #about-hero .hero-content p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }
    /* ===== ABOUT SECTIONS GRID ===== */
    .about-sections-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }
    .about-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(15,81,50,0.08);
      border: 1px solid rgba(15,81,50,0.08);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #0f5132, #ffc107);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }
    .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(15,81,50,0.15);
    }
    .about-card:hover::before { transform: scaleX(1); }
    .about-card .card-icon {
      width: 70px; height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(15,81,50,0.1), rgba(26,122,79,0.2));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.8rem;
      color: #0f5132;
      transition: transform 0.3s ease;
    }
    .about-card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
    .about-card h3 {
      font-size: 1.1rem; font-weight: 700;
      color: #0f5132; margin-bottom: 12px;
    }
    .about-card p { font-size: 0.9rem; color: #555; line-height: 1.7; }
    .about-card .values-list { list-style: none; padding: 0; text-align: right; }
    .about-card .values-list li {
      font-size: 0.88rem; color: #444;
      padding: 6px 0; border-bottom: 1px solid rgba(15,81,50,0.08);
      display: flex; align-items: center; gap: 8px;
    }
    .about-card .values-list li:last-child { border-bottom: none; }
    .about-card .values-list li .fas { color: #0f5132; font-size: 0.75rem; }
    /* ===== ACHIEVEMENTS ===== */
    .achievements-section {
      background: linear-gradient(135deg, #0f5132, #1a7a4f);
      padding: 70px 20px;
      text-align: center;
    }
    .achievements-section h2 {
      color: #fff; font-size: 2rem;
      margin-bottom: 40px;
    }
    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .achievement {
      background: rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 28px 20px;
      color: #fff;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      transition: all 0.3s ease;
    }
    .achievement:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-5px);
    }
    .achievement .fas {
      font-size: 2.2rem; color: #ffc107;
      margin-bottom: 12px; display: block;
    }
    .achievement h3 {
      font-size: 2.2rem; font-weight: 800;
      color: #ffc107; margin-bottom: 6px;
    }
    .achievement p { font-size: 0.95rem; opacity: 0.9; }
    /* ===== TEAM ===== */
    .team-section {
      padding: 70px 20px;
      text-align: center;
      background: linear-gradient(135deg, #f8fffe, #e8f5ee);
    }
    .team-section h2 {
      font-size: 2rem; color: #0f5132;
      margin-bottom: 40px;
    }
    .team-members {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .member {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(15,81,50,0.08);
      border: 1px solid rgba(15,81,50,0.08);
      transition: all 0.35s ease;
    }
    .member:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(15,81,50,0.15);
    }
    .member img {
      width: 100%; height: 200px;
      object-fit: cover;
    }
    .member h3 {
      font-size: 1.05rem; font-weight: 700;
      color: #0f5132; margin: 16px 0 6px;
    }
    .member p {
      font-size: 0.85rem; color: #888;
      margin-bottom: 16px;
    }
    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      padding: 70px 20px;
      text-align: center;
    }
    .testimonials-section h2 {
      font-size: 2rem; color: #0f5132;
      margin-bottom: 40px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .testimonial {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 4px 20px rgba(15,81,50,0.08);
      border: 1px solid rgba(15,81,50,0.08);
      transition: all 0.35s ease;
      text-align: right;
      position: relative;
    }
    .testimonial::before {
      content: '"';
      position: absolute;
      top: 16px; right: 24px;
      font-size: 5rem;
      color: rgba(15,81,50,0.08);
      font-family: Georgia, serif;
      line-height: 1;
    }
    .testimonial:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(15,81,50,0.15);
    }
    .testimonial-header {
      display: flex; align-items: center;
      gap: 14px; margin-bottom: 16px;
    }
    .testimonial-img {
      width: 55px; height: 55px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(15,81,50,0.2);
      flex-shrink: 0;
    }
    .testimonial-info h4 {
      font-size: 0.95rem; font-weight: 700;
      color: #0f5132; margin-bottom: 2px;
    }
    .testimonial-info p {
      font-size: 0.8rem; color: #888;
      margin-bottom: 4px;
    }
    .testimonial-info .testimonial-phone { display: none; }
    .testimonial-info .stars { color: #ffc107; font-size: 0.9rem; }
    .testimonial blockquote {
      font-size: 0.92rem; color: #555;
      line-height: 1.8; font-style: italic;
      margin: 0; border: none; padding: 0;
    }
    /* ===== ABOUT DETAILS ===== */
    .about-details { padding: 70px 0; }
    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .about-sections-grid { grid-template-columns: repeat(2, 1fr); }
      .achievements-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .testimonials-grid { grid-template-columns: 1fr; }
      .team-members { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
      .about-sections-grid { grid-template-columns: 1fr; }
      .achievements-grid { grid-template-columns: repeat(2, 1fr); }
      .team-members { grid-template-columns: 1fr; }
    }
  