/*--------------------------------------------------------------
# Hero Section - Personalanfrage
--------------------------------------------------------------*/

.section-hero {
    text-align: left;
    background-color: #0071bc; /* Replace with actual color */
    max-height: 500px;
  }
  
  .personalanfrage-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  
  .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .image-container img {
    max-width: 60%;
    height: auto;
  }
  
  .content {
    flex: 1;
    text-align: left;
  }
  
  .content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;    
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-family: "Raleway", sans-serif;
    color: black;
    background-color: white !important;
    border: none;
    text-decoration: none;
    transition: 0.3s ease-in-out;
  }
  
  .btn:hover {
    background-color: #0071bc;
    color: grey;
  }


  @media screen and (max-width: 768px) {
    .image-container img {
      display: none;
    }

    .layout {
      display: block;
      padding: 25px;
    }
    
  }
  

/*--------------------------------------------------------------
# Section - Wie es funktioniert
--------------------------------------------------------------*/

.how-it-works {
    text-align: center;
    background-color: white; /* Replace with your actual color */
    padding: 60px 20px;
    max-width: 1000px;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .how-it-works-container {
    max-width: 800px;
    margin: 0 auto;
    display: contents;
  }
  
  .title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    width: 100%;
  }
  
  .steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .step {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    flex: 1; /* Each step will take equal space */
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .step:hover {
    transform: translateY(-5px);
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #0071bc; /* Replace with actual color */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
  }
  
  .step-icon img {
    max-width: 40px;
    height: auto;
  }
  
  .step h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .step p {
    font-size: 1rem;
    color: #555;
  }


  @media screen and (max-width: 768px) {
    .steps {
      flex-direction: column;
    }
    
  }
  
  
/*--------------------------------------------------------------
# Section - Form
--------------------------------------------------------------*/

.form-wrapper{
    display: flex;
  flex-direction: column;
  align-items: center;
}

#personal-anfrage-header{
    margin-bottom: 40px;
}
  .form-container {
    max-width: 600px;
    margin: auto;
    padding: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    background-color: #0071BC;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    width: 100px;
  }

  #submitKontaktForm {
    border-radius: 8px; /* Adjust the value for more or less rounding */
    width: 100%;
    margin-top: 25px;
  }

  .jobs-form-submit {
    text-align: left;
  }
  
  .jobs-form-submit-btn {
    background-color: #0071BC;
    color: white;
    border: none;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .jobs-form-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  