/* ===== BASE FONT CLASSES ===== */
.font-h1 {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 110%;
    font-size: 56px;
}

.font-h2 {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 120%;
    font-size: 37px;
}

.font-h3 {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 120%;
    font-size: 30px;
}

.font-h4 {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 130%;
    font-size: 23px;
}

.font-p-bold {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 140%;
    font-size: 20px;
}

.font-p {
    font-family: 'Helvetica', sans-serif;
    font-weight: normal;
    line-height: 140%;
    font-size: 20px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {

    /* Tablet */
    .font-h1 {
        font-size: 37px;
        line-height: 120%;
    }

    .font-h2 {
        font-size: 30px;
        line-height: 120%;
    }

    .font-h3 {
        font-size: 23px;
        line-height: 130%;
    }

    .font-h4 {
        font-size: 20px;
        line-height: 140%;
    }

    .font-p-bold,
    .font-p {
        font-size: 18px;
        line-height: 140%;
    }
}

@media (max-width: 768px) {

    /* Mobile */
    .font-h1 {
        font-size: 30px;
        line-height: 120%;
    }

    .font-h2 {
        font-size: 23px;
        line-height: 130%;
    }

    .font-h3 {
        font-size: 20px;
        line-height: 140%;
    }

    .font-h4 {
        font-size: 18px;
        line-height: 140%;
    }

    .font-p-bold,
    .font-p {
        font-size: 16px !important;
        line-height: 140%;
    }
}


.contact-section {
    padding: 8rem 0 5rem !important;
    text-align: center;
    overflow: hidden;
    background: #fff;
}

.contact-section-p {
    padding: 40px 20px;
}
.why-contact-section {
    /* max-width: 800px;
    margin: 0 auto;
    padding: 0px 20px; */
  }
  
  .why-contact-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
  }
  
  .contact-reason {
    display: flex;
    /* align-items: flex-start; */
    gap: 16px;
    margin-bottom: 16px;
    align-items: stretch;
  }
  
  .contact-reason .icon {
    flex-shrink: 0;
  }
  
  .contact-reason .text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .contact-reason .text p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
  }
  

  
/* --- md --- */
@media (min-width: 768px) and (max-width: 1024px){
 
}
/* --- sm xs --- */
@media (min-width: 200px) and (max-width: 767px){
  .contact-reason {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.contact-item {
  display: flex;
  align-items: center !important;
  max-width: 300px;
  flex-direction: column;
  justify-content: space-between;
    align-items: center;
    gap: 0px !important;
}

.contact-info-grid {
  flex-direction: column;
  align-items: center;
  gap: 10px !important;
}
}
  

/* contact-card */

.contact-box {
    color: #444;
    font-size: 16px !important;
    line-height: 1.6;
  }
  
  .contact-address {
    margin-bottom: 16px;
    font-size: 16px !important;
  }
  
  .contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .contact-label {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .contact-icon {
    font-size: 18px;
    color: #0057d8;
  }
  
  .contact-title {
    font-weight: bold;
  }
  
  .contact-value {
    color: #333;
    white-space: nowrap;
  }
  
  .contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 300px;
  }
  
  .contact-item .icon {
    flex-shrink: 0;
  }
  
  .contact-item .text strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
  }
  
  .contact-item .text p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
  }
  
 