/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.4;
  margin-top: 60px;
}

.banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(90deg, #a8e063, #56ab2f);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.banner .icon {
  margin-right: 8px;
  font-size: 18px;
}

.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 -20px;
}

.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ı */
}

.about-me-section {
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  margin: 30px auto;
  max-width: 900px;
}

.about-me-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-me-pic img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.about-me-content {
  flex: 1;
}

.about-me-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #222;
}

.about-me-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-me-toggle {
  background-color: #56ab2f;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-me-toggle:hover {
  background-color: #3a8d21;
}

.about-me-more.hidden {
  display: none;
}

@media (max-width: 768px) {
  .about-me-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-me-pic img {
    margin-bottom: 0px;
  }
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 16px; /* ikonlar arası boşluk */
  justify-content: center; /* ikonları ortalar */
}

.social-links a {
  font-size: 18px;
  color: #555555;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #545454;
  transform: scale(1.2);
}

.onceki-danisanlar {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.onceki-danisanlar h2 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #333;
}

.danisanlar-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.danisanlar-scroll::-webkit-scrollbar {
  height: 8px;
}

.danisanlar-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.danisanlar-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}

.danisanlar-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.danisanlar-scroll img {
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.danisanlar-scroll img:hover {
  transform: none;
}

.aylik-indirim {
  background: linear-gradient(135deg, #62ac27, #478c1c);
  color: white;
  padding: 30px 20px;
  margin: 30px auto;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  font-family: 'Poppins', sans-serif;
}

.aylik-indirim h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.geri-sayim {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.geri-sayim div {
  background-color: white;
  color: #62ac27;
  padding: 10px 15px;
  border-radius: 12px;
  min-width: 70px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.geri-sayim span {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

.geri-sayim p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

