/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.banner {
  background: linear-gradient(to right, #a8e063, #56ab2f);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.intro {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}

.main-title {
  text-align: center;
  font-size: 30px;
  margin: 0px 0 0px;
}

.main-title span {
  color: #a0005b;
  font-weight: bold;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


.program {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  color: #2c2c2c;
  line-height: 1.6;
  transition: box-shadow 0.3s ease;
}

.program:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.program h2 {
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 0px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.program .highlight {
  color: #d81e5b;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: block;
}

.program ul {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.program ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.program ul li i {
  color: #d81e5b;
  font-size: 1.3rem;
  min-width: 24px;
  text-align: center;
}

.program p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 14px;
}

.program strong {
  color: #d81e5b;
}
a.cta {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 20px auto 0;
  padding: 15px 0;
  background: linear-gradient(45deg, #4caf50, #81c784);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 35px;
  box-shadow: 0 6px 15px rgba(72, 180, 97, 0.5);
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

a.cta:hover {
  background: linear-gradient(45deg, #388e3c, #66bb6a);
  box-shadow: 0 8px 20px rgba(56, 142, 60, 0.8);
  transform: scale(1.05);
  cursor: pointer;
}

footer {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  color: #666;
}

footer span {
  font-weight: bold;
  color: #007a3d;
}

@media (max-width: 600px) {
  .card button {
    font-size: 13px;
    padding: 8px 16px;
  }

  .main-title {
    font-size: 20px;
  }

  .program {
    padding: 15px;
  }

  .cta {
    font-size: 13px;
    padding: 8px 16px;
  }
}

.scroll-down {
  font-size: 3rem;
  color: #82c849;
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
  user-select: none;
  margin-top: 10px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

.transparent-line {
  border: none;            /* Varsayılan çizgiyi kaldır */
  border-top: 2px solid rgba(0,0,0,0.1); /* Siyah ama çok şeffaf */
  margin: 20px 0;
  width: 100%;             /* Genişlik ayarı */
}



