/* Genel Ayarlar */
body {
  font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
  }
  
  /* Eğitim Bölümü */
  .upcoming-education {
    padding: 40px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
  }
  
  .education-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Eğitim Görseli */
  .education-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .education-image img {
    max-width: 50%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Eğitim Detayları */
  .education-details {
    flex: 1 1 60%;
    padding: 20px;
  }
  
  .education-details h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0d3245;
  }
  
  .education-details p {
    margin-bottom: 10px;
  }
  
  .apply-button {
    display: inline-block;
    background-color: #0d3245;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .apply-button:hover {
    background-color: #275462;
  }
  
  /* Responsive Tasarım */
  @media (max-width: 768px) {
    .education-item {
      flex-direction: column;
    }
  
    .education-image,
    .education-details {
      flex: 1 1 100%;
    }
  
    .education-details h2 {
      font-size: 20px;
    }
  
    .education-details p {
      font-size: 14px;
    }
  
    .apply-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  }
  
  @media (max-width: 480px) {
    .education-details h2 {
      font-size: 18px;
    }
  
    .education-details p {
      font-size: 12px;
    }
  
    .apply-button {
      font-size: 12px;
      padding: 6px 12px;
    }
    .education-image img {
        max-width: 90%;
        height: 450px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }
  }
  