/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
  }
  
  .container {
    max-width: 100%;
    margin: auto;
    padding: 20px 50px;
    
  }
  .inquiry-point {
        line-height: 35px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: column;
}

 #ready-section {
    line-height: 35px;
    display: flex
;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
}
  /* Hero Section */
  .hero-section {
    background-color: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
  }
  
  .hero-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn-primary {
    background-color: #0073e6;
    color: #fff;
    padding: 21px 28px;
    border: none;
    cursor: pointer;
    font-size: 25px;
  }
  
  .btn-primary:hover {
    background-color: #005bb5;
  }
  
  /* Careers Section */
  .careers-section {
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .careers-section h2 {
        text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .careers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  
  .careers-text {
    flex: 1 1 500px;
  }
  
  .careers-point h4 {
  
    margin: 10px 0;
  }
  
  .careers-image {
    flex: 1 1 500px;
  }
  
  .careers-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Inquiries Section */
  .inquiries-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
  }
  
  .inquiries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  
  .inquiries-image {
    flex: 1 1 500px;
  }
  
  .inquiries-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  .inquiries-text {
    flex: 1 1 500px;
  }
  
  .inquiries-point h4 {
    color: #005bb5;
    margin: 10px 0;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: #005bb5;
    color: #fff;
    text-align: center;
       padding: 8px 20px;
  }
  
  .cta-section p {
    margin-bottom: 20px;
  }
  
  .cta-section .btn-primary {
    background-color: #fff;
    color: #005bb5;
  }
  
  .cta-section .btn-primary:hover {
    background-color: #f4f4f4;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .careers-grid,
    .inquiries-grid {
      flex-direction: column;
      text-align: center;
    }
  
    .careers-image img,
    .inquiries-image img {
      margin: auto;
    }
  }
  





  /* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
  }
  
  .contact-info {
    flex: 1 1 450px;
    color: #005bb5;
  }
  
  .contact-info h2 {
      font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .contact-form {
    flex: 2 1 600px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  textarea {
    resize: none;
  }
  
  .form-row {
    display: flex;
    gap: 10px;
  }
  
  .form-row > div {
    flex: 1;
  }
  
  .privacy-options {
    font-size: 0.9rem;
    color: #333;
  }
  
  .privacy-options label {
    display: block;
    margin-bottom: 10px;
  }
  
  .privacy-options a {
    color: #005bb5;
    text-decoration: none;
  }
  
  .privacy-options a:hover {
    text-decoration: underline;
  }
  
  .btn-primary {
    background-color: #0073e6a3;
    color: #fff;
    padding: 20px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .btn-primary:hover {
    background-color: #005bb5;
  }
  
  .top-section {
    text-align: left;
}


  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
  }
  
  .checkbox-label input {
    opacity: 0;
    cursor: pointer;
  }
  
  .checkbox-label .checkmark {
    height: 16px;
    width: 16px;
    background-color: #e9e9e9;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .checkbox-label input:checked + .checkmark {
    background-color: #0073e6;
    border-color: #005bb5;
  }
  
  .checkbox-label input:checked + .checkmark:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .privacy-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
  }
  
  .privacy-link {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
  }
  
  .privacy-link:hover {
    text-decoration: underline;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column;
    }
    .careers-section h2 {
    text-align: left;
}

h3 {
    text-align: left;
}
    .container {
    padding: 20px 15px;
}
.inquiries-image {
    flex: 1 1 348px;
}
.careers-image {
    flex: 1 1 300px;
}
.inquiries-grid {
    display: flex;
    flex-direction: column-reverse;
}


  #ready-section {
    line-height: 35px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}
.contact-info {
    flex: 1 1 194px;
    color: #005bb5;
}
    .contact-info,
    .contact-form {
            text-align: left;
    }
  
    .form-row {
      flex-direction: column;
    }
  }