body {
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  .contact-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 30px;
  }
  .hero-content {
    padding-top: 60px !important;
  }
  .company-info {
    margin-right: 250px;
  }
  .company-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    position: relative;
  }
  
  .company-info h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #0057FF;
    margin-top: 10px;
  }

  .join-mission-title img {
    position: absolute;
    top: -15px;
    right: 17px;
}

.hero-title img {
    position: absolute;
    top: 46px;
    left: 419px;
}

.have-question img {
    position: absolute;
    top: 3px;
    left: 172px;
}
  
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }


  .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 20px;
    background-size: 20px 20px; 
    background-position: center; 
    background-repeat: no-repeat; 
  }
  
  .circle.blue {
    background-color: #0057FF;
    box-shadow: 0 0 0 5px #fff, 0 0 0 6px #007bff;
  }
  
  .circle.orange {
    background-color: #F7A906;
    box-shadow: 0 0 0 5px #fff, 0 0 0 6px #F7A906;
  }
  .info-text {
    font-size: 14px;
    color: #333;
  }
  .info-text span {
    font-weight: bold;
  }
  .contact-form-container {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 3px solid orange;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .svg-border {
    position: absolute;
    top: -17px;
    right: 164px;
    width: 100px;
    height: 106px;
    z-index: -1;
  }
  .contact-form-container h2 {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
  }
  .contact-form-container p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
  }
  .form-group {
    position: relative;
    margin-bottom: 15px;
  }
  .form-group label {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
  }
  .form-group label span {
    color: red;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 8px 30px 8px 10px;
    border: 1px solid #ddd;
    font-size: 12px;
    color: #666;
  }
  .form-group textarea {
    height: 80px;
    resize: none;
  }
  .form-group .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #0071B7;
    font-size: 12px;
  }
  .btn-send {
    background-color: #0071B7;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
    margin-bottom: 30px;
    margin-top: 45px;
  }
  .btn-send:hover {
    background-color: #0037CC;
  }
  .btn-send svg {
    width: 12px;
    height: 12px;
  }

  ::placeholder {
    color: #0057FF;
  }
  
  ::-webkit-input-placeholder {
    color: #0057FF;
  }
  
  ::-moz-placeholder {
    color: #0057FF;
  }
  
  :-ms-input-placeholder {
    color: #0057FF;
  }
  
  .form-group input {
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .contact-info-section {
    padding: 40px 0;
    text-align: center;
}

.yellow-line {
    width: 50px;
    height: 2px;
    background-color: #F7A906;
    margin: 0 auto 80px;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.newsletter-btn {
    background-color: #F7A906;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #e69805;
}

.resources-btn {
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.resources-link:hover {
    text-decoration: underline;
}
  

@media screen and (max-width: 600px) {
    .contact-section {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        min-height: auto; /* Adjust height for mobile */
    }

    .company-info {
        margin-right: 0; /* Remove margin for mobile */
        margin-bottom: 40px; /* Add space below for stacking */
        text-align: left; /* Center align for mobile */
    }


    .info-item {
        justify-content: left; /* Center align items on mobile */
    }

    .contact-form-container {
        max-width: 100%; /* Full width on mobile */
        margin: 0 auto;
        margin-top: 30px;
    }

    .hero-content {
        padding-top: 10px !important;
      }

    .svg-border {
        right: 55%; /* Center the SVG on mobile */
        transform: translateX(50%);
    }

    .contact-form-container h2,
    .contact-form-container p {
        text-align: center; /* Center align text on mobile */
    }

    .btn-send {
        margin: 45px auto 30px; /* Center the button on mobile */
    }

    .yellow-line {
        margin-bottom: 50px; /* Reduce margin for mobile */
        margin-top: 70px;
    }

    .button-group {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
    }

    .newsletter-btn {
        width: 100%; /* Full width button on mobile */
        max-width: 300px; /* Limit max width for aesthetics */
    }
    .hero-section {
        padding-top: -25px;
        
    }
    .info-text {
        font-size: 14px;
        color: #333;
      }

      .hero-title img {
        position: absolute;
        top: 119px;
        left: 345px;
    }
    
    .have-question img {
        position: absolute;
        top: 3px;
        left: 244px;
    }
}