  /* ============================================
           PROFESSIONAL ABOUT PAGE STYLES
           (Matching Blog & Contact Pages)
        ============================================ */

  /* ----- About Header ----- */
  .about-header {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
      height: 40vh;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      overflow: hidden;
  }

  .about-header::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -15%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(65, 105, 225, 0.15), transparent 70%);
      border-radius: 50%;
      animation: floatGlow 8s ease-in-out infinite alternate;
  }

  .about-header::after {
      content: '';
      position: absolute;
      bottom: -35%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
      border-radius: 50%;
      animation: floatGlow 10s ease-in-out infinite alternate-reverse;
  }

  @keyframes floatGlow {
      0% {
          transform: translate(0, 0) scale(1);
      }

      100% {
          transform: translate(30px, -30px) scale(1.1);
      }
  }

  .about-header h2 {
      font-size: 48px;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: 2px;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.8s ease;
  }

  .about-header h2 span {
      color: #4169E1;
  }

  .about-header p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 10px;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.8s ease 0.2s both;
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* ----- About Content Section ----- */
  #about-content {
      padding: 60px 80px;
      max-width: 1280px;
      margin: 0 auto;
  }

  /* ----- Story Section ----- */
  .story-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
  }

  .story-image {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      position: relative;
  }

  .story-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
  }

  .story-image:hover img {
      transform: scale(1.03);
  }

  .story-image .badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(65, 105, 225, 0.92);
      color: #fff;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      backdrop-filter: blur(10px);
  }

  .story-text h3 {
      font-size: 36px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 16px;
  }

  .story-text h3 span {
      color: #4169E1;
  }

  .story-text .subtitle {
      font-size: 18px;
      color: #4169E1;
      font-weight: 600;
      margin-bottom: 8px;
  }

  .story-text p {
      font-size: 16px;
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 16px;
  }

  .story-text .highlight-text {
      background: #f1f4f9;
      padding: 20px 24px;
      border-radius: 14px;
      border-left: 4px solid #4169E1;
      margin: 20px 0;
      font-style: italic;
      color: #1e293b;
      font-size: 16px;
      line-height: 1.7;
  }

  /* ----- Mission Vision Values ----- */
  .mission-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin: 60px 0 80px;
  }

  .mission-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 35px 28px;
      text-align: center;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: all 0.4s ease;
  }

  .mission-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(65, 105, 225, 0.08);
      border-color: rgba(65, 105, 225, 0.15);
  }

  .mission-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #f1f4f9, #e8edf5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 28px;
      color: #4169E1;
      transition: all 0.4s ease;
  }

  .mission-card:hover .mission-icon {
      background: #4169E1;
      color: #fff;
      transform: scale(1.05);
  }

  .mission-card h4 {
      font-size: 20px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
  }

  .mission-card p {
      font-size: 15px;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
  }

  /* ----- Team Section ----- */
  .team-section {
      margin: 60px 0;
  }

  .section-title {
      text-align: center;
      margin-bottom: 40px;
  }

  .section-title h3 {
      font-size: 34px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 8px;
  }

  .section-title h3 span {
      color: #4169E1;
  }

  .section-title p {
      font-size: 16px;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
  }

  .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }

  .team-card {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: all 0.4s ease;
      text-align: center;
  }

  .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(65, 105, 225, 0.08);
  }

  .team-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
  }

  .team-info {
      padding: 20px 20px 24px;
  }

  .team-info h4 {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 4px;
  }

  .team-info .role {
      font-size: 14px;
      color: #4169E1;
      font-weight: 500;
      margin-bottom: 10px;
  }

  .team-info p {
      font-size: 14px;
      color: #64748b;
      margin: 0;
      line-height: 1.5;
  }

  .team-social {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
  }

  .team-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #f1f4f9;
      color: #1e293b;
      font-size: 14px;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .team-social a:hover {
      background: #4169E1;
      color: #fff;
      transform: translateY(-3px);
  }

  /* ----- Stats Section ----- */
  .stats-section {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin: 60px 0;
      background: #ffffff;
      border-radius: 24px;
      padding: 50px 40px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 42px;
      font-weight: 800;
      color: #4169E1;
      line-height: 1;
      margin-bottom: 6px;
  }

  .stat-label {
      font-size: 16px;
      color: #64748b;
      font-weight: 500;
  }

  /* ----- Newsletter ----- */
  #newsletter {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      padding: 50px 80px;
      margin: 0;
  }

  #newsletter h4 {
      color: #fff;
      font-size: 24px;
  }

  #newsletter p {
      color: rgba(255, 255, 255, 0.7);
  }

  #newsletter .form input {
      border-radius: 30px 0 0 30px;
      height: 50px;
  }

  #newsletter .form button {
      background: #4169E1;
      border-radius: 0 30px 30px 0;
      padding: 0 40px;
      font-weight: 600;
      letter-spacing: 0.5px;
  }

  #newsletter .form button:hover {
      background: #254ecb;
  }

  /* ============================================
           RESPONSIVE
        ============================================ */

  @media (max-width: 1024px) {
      .team-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 991px) {
      .about-header {
          height: 35vh;
          min-height: 280px;
      }

      .about-header h2 {
          font-size: 38px;
      }

      #about-content {
          padding: 40px;
      }

      .story-section {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .story-image img {
          height: 350px;
      }

      .mission-section {
          grid-template-columns: repeat(2, 1fr);
      }

      .stats-section {
          grid-template-columns: repeat(2, 1fr);
          padding: 35px 25px;
      }
  }

  @media (max-width: 768px) {
      .about-header {
          height: 30vh;
          min-height: 240px;
      }

      .about-header h2 {
          font-size: 30px;
      }

      .about-header p {
          font-size: 16px;
      }

      #about-content {
          padding: 30px 20px;
      }

      .story-text h3 {
          font-size: 28px;
      }

      .mission-section {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .team-grid {
          grid-template-columns: 1fr 1fr;
          gap: 20px;
      }

      .team-card img {
          height: 220px;
      }

      .stats-section {
          grid-template-columns: 1fr 1fr;
          gap: 20px;
          padding: 30px 20px;
      }

      .stat-number {
          font-size: 32px;
      }

      #newsletter {
          padding: 40px 20px;
      }

      #newsletter .form {
          width: 100%;
          flex-wrap: wrap;
      }

      #newsletter .form input {
          border-radius: 30px;
          margin-bottom: 12px;
          width: 100%;
      }

      #newsletter .form button {
          border-radius: 30px;
          width: 100%;
      }
  }

  @media (max-width: 480px) {
      .about-header {
          height: 28vh;
          min-height: 200px;
      }

      .about-header h2 {
          font-size: 24px;
      }

      .about-header p {
          font-size: 14px;
      }

      #about-content {
          padding: 20px 12px;
      }

      .story-image img {
          height: 250px;
      }

      .story-text h3 {
          font-size: 24px;
      }

      .story-text .highlight-text {
          padding: 16px 18px;
          font-size: 14px;
      }

      .team-grid {
          grid-template-columns: 1fr;
      }

      .team-card img {
          height: 280px;
      }

      .stats-section {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
          padding: 24px 16px;
      }

      .stat-number {
          font-size: 28px;
      }

      .stat-label {
          font-size: 14px;
      }

      .section-title h3 {
          font-size: 26px;
      }
  }