.branding-section {
    background-image: url("/sites/default/files/contact/branding-banner_converted.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px;
    width: 100%;
    color: #fff;
    overflow: hidden;
  }


  .subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #ff5722;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
  }

  .subtitle::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #ff5722;
    margin-right: 10px;
  }

  .title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: #ccc;
  }

  .btn-custom {
    background-color: #ff5722;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px; /* Rounded button */
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
  }

  .btn-custom:hover {
    background-color: #e64a19;
  }

  .image img {
    width: 100%;
    object-fit: contain;
    margin-left: 30px;
  }

  .branding-section .content{
    flex: 0 50%;
  }

  /* Responsive Font Sizes */
  @media (max-width: 1440px) {
    .title {
      font-size: 3rem;
    }
    .description {
      font-size: 1rem;
    }
    .image img {
      margin-left: 30px;
    }
  }

  @media (max-width: 1200px) {
    .title {
      font-size: 2.5  rem;
    }
    .description {
      font-size: 1rem;
    }
  }

  @media (max-width: 1024px) {
    .title {
      font-size: 2.3rem;
    }
    .image img {
      margin-left: 60px;
    }
    .description {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 768px) {
    .branding-section {
      text-align: start !important;
    }
    .content {
      margin-right: 0px !important;
    }
    .image img {
      margin-left: 80px;
    }
    .title {
      font-size: 2rem;
    }

    .description {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .title {
      font-size: 2rem;
    }

    .subtitle {
      font-size: 0.875rem;
    }

    .description {
      font-size: 0.85rem;
    }

    .btn-custom {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
    .image {
      display: none;
    }
    .branding-section {
      flex-direction: column;
      text-align: start !important;
    }
  }

  @media (max-width: 425px) {
    .branding-section {
      flex-direction: column;
      text-align: start !important;
    }
    .title {
      font-size: 1.75rem;
    }
    .image {
      display: none;
    }
    .subtitle {
      font-size: 0.875rem;
    }

    .description {
      font-size: 0.8rem;
    }

    .btn-custom {
      font-size: 0.875rem;
      padding: 10px 18px;
    }
  }

  @media (max-width: 320px) {
    .title {
      font-size: 1.5rem;
    }
    .image {
      display: none;
    }
    .branding-section {
      flex-direction: column;
      text-align: start !important;
    }
    .subtitle {
      font-size: 0.75rem;
    }

    .description {
      font-size: 0.75rem;
    }

    .btn-custom {
      font-size: 0.8rem;
      padding: 8px 16px;
    }
  }
