/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 26 2026 | 15:06:15 */
  /* --- SCOPED WRAPPER TO PREVENT DIVI CONFLICTS --- */
  .mpa-service-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .mpa-service-container * {
    box-sizing: border-box;
  }

  /* --- REUSABLE BADGE & TYPOGRAPHY --- */
  .mpa-service-badge {
    display: inline-block;
    background-color: #f1f5f9;
    color: #0284c7; /* Industrial Blue */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
  }

  .mpa-service-section {
    padding: 50px 0;
  }

  .mpa-service-container h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 20px;  
  }

  .mpa-service-container p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
  }

  .mpa-service-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 10px 0;
  }

  /* --- HERO SECTION STYLES --- */
  .mpa-service-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 60px 40px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }

  /* Tech grid background overlay decoration */
  .mpa-service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.05;
    background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .mpa-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }

  .mpa-service-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 10px 0 20px 0;
  }

  .mpa-service-hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .mpa-service-hero .mpa-service-badge {
    background-color: rgba(2, 132, 199, 0.2);
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.3);
  }

  /* --- OVERVIEW LAYOUT --- */
  .mpa-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
  }

 
  /* --- RESPONSIVE MEDIA QUERIES --- */
  @media (max-width: 980px) {
    .mpa-service-hero h1 {
      font-size: 32px;
    }
    .mpa-overview-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
   
  }

  @media (max-width: 767px) {
    .mpa-service-hero {
      padding: 40px 20px;
    }
    .mpa-service-hero h1 {
      font-size: 26px;
    }
    .mpa-service-hero p {
      font-size: 16px;
    }
    .mpa-service-container h2 {
      font-size: 24px;
    }
    .mpa-faq-question {
      padding: 15px 20px;
      font-size: 15px;
    }
    .mpa-faq-answer {
      padding: 0 20px;
    }
    .mpa-service-section {
      padding: 30px 0;
    }
  }

  .service-faq-label{
    display:flex;
    justify-content:center;
  }
  .service-faq-title{
    text-align:center;
  }