/* GENEL STİLLER */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fa;
    color: #333;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  /* HEADER */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .logo {
    height: 60px;
  }
  
  .header-icons {
    display: flex;
    gap: 12px;
    background-color: transparent;
  }
  
  .icon {
    font-size: 22px;
    cursor: pointer;
  }
  
  .slider-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
  }
  
  /* SLIDER */
  .slider {
    overflow: hidden;
    width: 100vw;
    position: relative;
  }
  
  .slides-wrapper {
    display: flex;
    width: 300vw;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    width: 100vw;
    position: relative;
    flex-shrink: 0;
  }
  
  .slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  
  .slide-text {
    position: absolute;
    top: 20%;
    left: 8%;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  }
  
  .slide-text p {
    font-size: 18px;
    margin: 0;
  }
  
  .slide-text h2 {
    font-size: 36px;
    margin: 5px 0;
  }
  
  .slide-text small {
    font-size: 14px;
  }
  
  /* SLIDER DOTS */
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    gap: 10px;
  }
  
  .slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .slider-dots .active {
    background-color: #333;
  }
  
  /* GROWTH INFO */
  .growth-info {
    padding: 24px 20px;
    background-color: #fff;
  }
  
  .growth-info h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .growth-info p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* KONULAR HEADER */
  .topics {
    padding: 24px 20px;
  }
  
  .topics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .topics-header h3 {
    font-size: 20px;
    font-weight: 600;
  }
  
  .see-all {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    pointer-events: none;
    opacity: 0.6;
  }
  
  /* KONULAR: yatay scroll */
  .topics-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 4px 20px 4px;
    -webkit-overflow-scrolling: touch;
  }
  
  .topics-scroll::-webkit-scrollbar {
    display: none;
  }
  
  /* IMAGE BUTTONLAR */
  .image-button {
    flex: 0 0 auto;
    width: 200px;
    height: 284px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
    background: none;
    padding: 0;
  }
  
  .image-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-button:hover {
    transform: scale(1.05);
  }
  
  /* ALT SLIDER */
  .topics-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
  }
  
  .topics-slider::-webkit-scrollbar {
    display: none;
  }
  
  .slider-item {
    flex: 0 0 auto;
    width: 240px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* === Koçluk Setleri === */

/* KOÇLUK SETLERİ */
.coach-sets {
    padding: 24px 20px;
    background-color: #f5f7fa;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .section-header h3 {
    font-size: 20px;
    font-weight: 600;
  }
  
  .coach-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }
  
  .coach-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .coach-card {
    flex: 0 0 auto;
    width: 240px;
    height: 330px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
  }
  
  .coach-image {
    height: 160px;
    overflow: hidden;
  }
  
  .coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .coach-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  
  .coach-info h4 {
    font-size: 15px;
    margin: 0 0 4px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .coach-name {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
  }
  
  .stars {
    font-size: 14px;
    color: #ffc107;
  }
  
  .rating {
    margin-left: 4px;
    color: #444;
  }
  
  .price-tag {
    margin-top: 8px;
    background-color: #24478f;
    color: #fff;
    padding: 6px 0;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
  }
  
  
  /* === CTA Banner === */
  
  .cta-banner {
    margin-top: 24px;
    background-color: #1d47b5;
    color: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cta-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .cta-img {
    width: 80px;
    height: auto;
    border-radius: 12px;
  }
  .coach-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }
  
  .coach-card {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
  }
  .why-growth {
    padding: 24px 20px;
    background-color: #f9f9f9;
  }
  
  .why-growth h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .why-growth-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }
  
  .why-growth-slider::-webkit-scrollbar {
    display: none;
  }
  
  .why-card {
    display: flex;
    flex: 0 0 90%;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .why-card img {
    width: 45%;
    object-fit: cover;
  }
  
  .why-text {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .why-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .why-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
  }
  
  .badge {
    font-size: 13px;
    background-color: #f3f3f3;
    padding: 6px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }
  
  .slider-dots span {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-dots .active {
    background-color: #555;
  }
  .single-coaching {
    padding: 24px 20px;
    background-color: #f5f7fa;
  }
  
  .single-coaching .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .single-coaching h3 {
    font-size: 22px;
    font-weight: 600;
  }
  
  .single-coach-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  
  .single-coach-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .single-coach-card {
    flex: 0 0 auto;
    width: 85%;
    border-radius: 20px;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    object-fit: cover;
  }
  .feedback-section {
    padding: 24px 20px;
    background-color: #f5f7fa;
    text-align: center;
  }
  
  .feedback-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .feedback-card {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: left;
  }
  
  .feedback-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
  }
  
  .feedback-card .stars {
    font-size: 16px;
    color: #f39c12;
    margin-bottom: 10px;
  }
  
  .feedback-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
  }
  .how-it-works {
    padding: 40px 20px;
    background-color: #f5f7fa;
    text-align: left;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
  }
  .wellbeing-section {
    padding: 32px 20px;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  
  .section-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
  }
  
  .section-header .see-all {
    font-size: 14px;
    color: #666;
    text-decoration: none;
  }
  
  .wellbeing-post {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .wellbeing-post img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  .post-info h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
  }
  
  .post-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #888;
  }
  