/* -----------------------------------------
   OUR PROCESS PAGE — FULLY SCOPED
   (Will NOT affect other pages)
------------------------------------------*/

#our-process-page {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #1d2a3a;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* -----------------------------------------
     PAGE WRAPPER
  ------------------------------------------*/
  
  #our-process-page .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* -----------------------------------------
     HERO SECTION
  ------------------------------------------*/
  
  #our-process-page #process-hero {
    text-align: center;
    padding: 50px 20px;
    background: #0a499c;
    border-bottom: 1px solid #e2edf7;
    border-radius: 12px;
  }
  
  #our-process-page #process-hero h1 {
    font-size: 38px;
    color: #0d3a66;
    margin-bottom: 12px;
  }
  
  #our-process-page #process-hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    color: #4a5568;
  }
  
  /* -----------------------------------------
     PROCESS GRID
  ------------------------------------------*/
  
  #our-process-page .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  @media (min-width: 800px) {
    #our-process-page .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* -----------------------------------------
     PROCESS CARDS
  ------------------------------------------*/
  
  #our-process-page .process-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #e3edf7;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  #our-process-page .process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 12px 26px rgba(0, 0, 0, 0.07);
  }
  
  /* Step numbers */
  #our-process-page .process-number {
    background: #0ea5e9; /* bright blue */
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  /* Step titles */
  #our-process-page .process-card h3 {
    font-size: 24px;
    color: #0d3a66;
    margin-bottom: 10px;
  }
  
  /* Step paragraphs */
  #our-process-page .process-card p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
  }
  
  /* -----------------------------------------
     CALL-OUT OR SPECIAL BOXES (optional)
  ------------------------------------------*/
  
  #our-process-page .process-callout {
    background: #e0f2fe;
    border-left: 5px solid #0284c7;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 20px;
  }
  
  #our-process-page .process-callout p {
    margin: 0;
    color: #1e3a50;
  }
  
  /* -----------------------------------------
     RESPONSIVE TWEAKS
  ------------------------------------------*/
  
  @media (max-width: 550px) {
    #our-process-page #process-hero h1 {
      font-size: 32px;
    }
  
    #our-process-page .process-card {
      padding: 20px;
    }
  }
  