    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
    }
    header {
      background: #0f766e;
      color: white;
      padding: 50px 20px;
      text-align: center;
    }
    section {
      padding: 40px 20px;
      max-width: 900px;
      margin: auto;
    }
    h2 {
      color: #0f766e;
      margin-bottom: 15px;
    }
.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}
    a {
      color: #0f766e;
      text-decoration: none;
      font-weight: bold;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #e2e8f0;
      font-size: 14px;
    }
  .title-container {
    position: relative;
    text-align: center;   /* Yazı tam ortada */
  }

  .title-container h1 {
    margin: 0;
  }

  .title-container img {
    position: absolute;
    top: 130%;              /* Dikey ortalama */
    transform: translateY(-50%);
    right: 27%;            /* Yazının hemen sağ tarafına yaklaşması için */
    width: 150px;
    height: 150px;
    border-radius: 20%;
    object-fit: cover;
  }