/*************************************************************
* ABOUT US HERO SECTION
*************************************************************/
.about-hero-section {
    width: 100%;
    padding: 40px 2%;
    background-color: #f2f2f2;
    text-align: center;
  }
  .page-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 36px;
    color: #072B59;
  }
  
  /*************************************************************
  * ABOUT US CONTENT SECTION
  *************************************************************/
  .about-content-section {
    padding: 40px 2%;
    background-color: #072B59;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #ffffff;
  }
  .about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .about-image {
    flex: 1;
    max-width: 600px;
  }
  .about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* The image dimensions are 1000x722 (approx. 1.39:1 ratio) */
    border-radius: 8px;
  }
  .about-text {
    flex: 1;
    font-size: 18px;
    
  }
  .about-text p {
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.8;
    font-weight: 400;
  }
  
  /* Switch to a single-column layout on tablet screens and smaller */
  @media (max-width: 992px) {
    .about-content-container {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /*************************************************************
  * CTA SECTION
  *************************************************************/
  .cta-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  .cta-title {
    color: #072B59;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    padding-top: 40px;
  }
  .cta-subtitle {
    color: #072B59;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  @media (max-width: 992px) {
    .about-hero-section {
        padding: 10px 0%;
    }
    .about-content-section {
        padding-bottom: 0px;
    }

    .cta-section {
        background-color: #fff;
        padding: 0px 20px 40px 20px;
        text-align: center;
    }
    .cta-buttons {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    .cta-buttons a.hero-button {
      width: 240px;
    }
  }
  
  /*************************************************************
  * CTA BUTTONS (Shared with Service Area)
  *************************************************************/
  .hero-button {
    display: flex;
    align-items: stretch;
    height: 60px;
    width: 240px;
    overflow: hidden;
    text-decoration: none;
  }
  .icon-part-red {
    background-color: #F2AC29;
      color: #072B59;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 3em;
    border-bottom-left-radius: 3em;
    padding-left: 7px;
  }
  .text-part-blue {
    background-image: linear-gradient(to bottom, #072B59, #063573);
    color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: bold;
    border-top-right-radius: 3em;
    border-bottom-right-radius: 3em;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .hero-button .icon-part-red i {
    font-size: 24px;
  }
  .hero-button:hover .text-part-blue {
    filter: brightness(115%);
  }
  .hero-button:hover .icon-part-red {
    filter: brightness(90%);
  }
  
  /*************************************************************
  * HVAC CONTACT FORM SECTION
  *************************************************************/
  .hvac-custom-wrapper {
    width: 100%;
    background-color: #1b3661;
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .hvac-custom-section {
    max-width: 1300px;
    margin: 0 auto;
    color: #fff;
    padding: 40px 20px;
  }
  .hvac-custom-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .hvac-custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hvac-custom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .hvac-custom-field {
    flex: 1 1 45%;
    min-width: 250px;
  }
  .hvac-custom-section label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    font-size: 1rem;
  }
  .hvac-custom-section input[type="text"],
  .hvac-custom-section input[type="tel"],
  .hvac-custom-section input[type="email"],
  .hvac-custom-section select,
  .hvac-custom-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    box-sizing: border-box;
  }
  .hvac-custom-section ::placeholder {
    color: #a1a1a1;
  }
  .hvac-custom-section input:focus::placeholder,
  .hvac-custom-section textarea:focus::placeholder {
    color: transparent;
  }
  .hvac-custom-section input[type="text"]:focus,
  .hvac-custom-section input[type="tel"]:focus,
  .hvac-custom-section input[type="email"]:focus,
  .hvac-custom-section select:focus,
  .hvac-custom-section textarea:focus {
    outline: 2px solid #c71f19;
  }
  .hvac-custom-submit-btn {
    background-color: #c71f19;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    align-self: center;
    min-width: 150px;
  }
  .hvac-custom-submit-btn:hover {
    background-color: #a51c16;
  }
  @media (max-width: 768px) {
    .about-hero-section {
        padding: 10px 0%;

      }
    .hvac-custom-section {
      padding: 20px 15px;
    }
    .hvac-custom-row {
      flex-direction: column;
    }
    .hvac-custom-field {
      flex: 1 1 100%;
    }
    
  }
  