/* Start custom CSS for html, class: .elementor-element-da42abe *//* ... (önceki CSS kodlarınız) ... */

/* .sample-certificates için ilk tanım */
.sample-certificates {
    background-color: #fff; /* Beyaz arka plan */
    padding: 20px; /* Bu padding değeri aşağıdaki tanımla çelişebilir */
    margin-top: 15px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center; /* Orijinal hizalama korundu */
}

/* .sample-certificates için ikinci (muhtemelen geçerli olan) tanım */
.sample-certificates {
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center; /* Ortala */
}

.sample-certificates-title {
    font-size: 1.3em;
    color: #1E5631; /* Yeşil */
    margin-bottom: 15px;
}

.sample-certificates-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Butonları ortala */
    gap: 5px;
}

.sample-certificate-button {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #1E5631; /* Yeşil */
    border-radius: 5px;
    color: #1E5631; /* Yeşil */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s; /* Geçiş efektleri */
    font-size: 0.9em;
    white-space: nowrap; /* Metnin alt satıra geçmesini engelle */
}

.sample-certificate-button:hover {
    background-color: #1E5631; /* Yeşil */
    color: #fff; /* Hover metin rengi */
}

/* ... (önceki CSS kodlarınız) ... */

/* .certificate-languages için bu tanım muhtemelen aşağıdakiyle birleştirilmeli veya silinmeli */
.certificate-languages {
    /* (önceki stiller aynı kalıyor) */
}

/* .language-list için flex/span kullanan tanım (HTML yapınız farklıysa geçersiz olabilir) */
.language-list {
    display: flex; /* Yan yana sıralama için */
    flex-wrap: wrap; /* Gerekirse alt satıra geçmesi için */
    justify-content: center; /* Ortalamak için */
    gap: 10px; /* Diller arası boşluk */
    margin-bottom: 0; /* Alttaki boşluğu kaldır (Orijinal 0px'di) */
}

.language-list span { /* li yerine span kullanıyoruz */
    padding: 5px 10px;
    border: 1px solid #ddd; /* Hafif bir çerçeve */
    border-radius: 5px;
    margin-bottom: 5px; /* Alt boşluk */
    color: #555;
    font-size: 0.9em;
}

/* ... (önceki CSS kodlarınız) ... */

/* .certificate-languages için diğer (muhtemelen geçerli olan) tanım */
.certificate-languages {
    background-color: #fff; /* Beyaz arka plan */
    padding: 20px;
    margin-bottom: 0px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center; /* Orijinal hizalama korundu */
}

.languages-title {
    font-size: 1.3em;
    color: #1E5631; /* Yeşil */
    margin-bottom: 10px;
}

.languages-description {
    color: #555;
    margin-bottom: 15px;
}

/* .language-list için liste (li) kullanan tanım */
.language-list {
    list-style: disc; /* Madde işaretleri */
    padding-left: 20px; /* Sol boşluk (Orijinal hali korundu) */
    color: #555;
    /* text-align bu tanımda belirtilmemiş, üst elementten alır */
}

.language-list li {
    padding: 5px 0;
    border-bottom: none; /* Çizgileri kaldır */
}

/* ... (your existing CSS) ... */

.certificate-intro {
    background-color: #f8f8f8; /* Light background for contrast */
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center the text */
}

.register-link {
    color: #1E5631; /* Yeşil */
    font-weight: bold;
    text-decoration: underline; /* Underline for better visibility */
}

.register-link:hover {
    color: #4CAF50; /* Orta Yeşil */
}

/* Genel Stil Ayarları */
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .sertifika-bolumu {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5px; /* Orijinal padding korundu */
        }
        .section-title {
            text-align: center;
            font-size: 2em;
            margin-bottom: 20px;
            color: #1E5631; /* Yeşil */
        }
        .info-text {
            text-align: center;
            margin-bottom: 0;
        }
        /* Sertifika Kartları */
        .sertifika-secenekleri {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-bottom: 30px;
        }
        .sertifika-karti {
            flex: 1;
            min-width: 280px;
            margin: 15px; /* Orijinal margin korundu */
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            transition: 0.3s;
            border-radius: 5px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .sertifika-karti:hover {
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        }
        .sertifika-karti ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .sertifika-karti .header {
            padding: 15px;
            text-align: center;
            color: white;
            font-size: 1.3em;
        }
        .sertifika-karti .price-tag {
            font-size: 1.5em;
            padding: 10px;
            text-align: center;
        }
        .sertifika-karti .price-tag b {
            color: #1E5631; /* Yeşil */
        }
        .sertifika-karti .eski-fiyat {
            font-size: 0.8em;
            color: #999;
        }
        .sertifika-karti .indirimli-gunler {
            background: #1E5631; /* Yeşil */
            padding: 8px;
            text-align: center;
        }
        .sertifika-karti .indirimli-gunler center {
            color: white;
            font-size: 0.9em;
        }
        .sertifika-karti li {
            padding: 8px 15px;
            border-bottom: 1px solid #eee;
            font-size: 0.9em;
             /* text-align bu tanımda yoktu, üst elementten alır */
             /* padding-left/right RTL için ayarlanmadı */
        }
         .sertifika-karti li:last-child{
             margin-top: auto; /* Buton alanını aşağı iter */
         }
        .sertifika-karti .button-area {
            text-align: center;
            padding: 15px;
        }
        /* Sertifika Türlerine Göre Renkler */
        .online-sertifika .header {
            background-color: #8BC34A; /* Açık Yeşil */
        }
        .baski-sertifika .header {
            background-color: #f0f0f0; /* Gri kalabilir */
            color: #666;
        }
        .baski-sertifika .price-tag {
            color: #666; /* Gri kalabilir */
        }
        .baski-sertifika .button{
             background-color: #ccc !important; /* Gri kalabilir */
             color: #333;
        }
          .baski-sertifika .button:hover{
             background-color: #aaa !important; /* Gri kalabilir */
        }
        .sinirsiz-sertifika .header {
            background: linear-gradient(-45deg, #1E5631, #8BC34A); /* Yeşil Gradient */
        }
        /* Toplu Bilgi Bölümü (Bu sınıf önceki HTML'de yoktu, ama stiller var) */
        .toplu-bilgi {
            margin-bottom: 30px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
            transition: 0.3s;
            border-radius: 5px;
        }
        .toplu-bilgi:hover {
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        }
        .toplu-bilgi .header {
            background: #1E5631; /* Yeşil */
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 1.2em;
            border-radius: 5px 5px 0 0;
        }
        .toplu-bilgi li {
            padding: 10px 15px;
            line-height: 1.6;
        }
        /* Örnek Sertifikalar (Bu sınıf önceki HTML'de yoktu, ama stiller var) */
        .ornek-sertifikalar {
            text-align: center;
        }
        .ornek-sertifika-tr, /* Bu sınıflar HTML'de yok */
        .ornek-sertifika-en { /* Bu sınıflar HTML'de yok */
            display: inline-block;
            width: 48%;
            font-size: 0.9em;
            color: #ffffff;
            margin: 5px;
            padding: 10px 20px;
        }
        /* Buton Stilleri */
        .button { /* Genel .button sınıfı */
            border: none;
            color: white !important;
            background-color: #1E5631 !important; /* Yeşil */
            padding: 10px 25px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 1em;
            margin: 4px 2px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .button:hover {
            background-color: #4CAF50 !important; /* Orta Yeşil Hover */
        }
        /* Mobil Uyum */
        @media (max-width: 768px) {
            .sertifika-secenekleri {
                flex-direction: column;
            }
            .sertifika-karti {
                margin: 10px 0; /* Mobil için margin değiştirildi */
            }
            .ornek-sertifika-tr,
            .ornek-sertifika-en {
                width: 90%;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09c6928 */*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

p {
  text-align: right; /* RTL için sağa hizalandı */
}

.popup {
  position: fixed;
  padding: 10px;
  width: 50%;
  max-width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  visibility: hidden;
  opacity: 0;
  /* "delay" the visibility transition */
  z-index: 1;
}
.popup:target {
  visibility: visible;
  opacity: 1;
  background: #fff;
  border-radius: 10px;
  z-index: 99;
}
.popup-close {
  position: absolute;
  padding: 10px;
  max-width: 500px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.9);
}
.popup .close {
  position: absolute;
  left: 5px; /* RTL için 'left' kullanıldı */
  right: auto; /* RTL için 'right: auto' eklendi */
  top: 5px;
  padding: 5px;
  color: #8BC34A; /* Açık Yeşil */
  transition: color .3s;
  font-size: 2em;
  line-height: .6em;
  font-weight: bold;
}
.popup .close:hover {
  color: #8BC34A; /* Açık Yeşil (veya isteğe bağlı olarak biraz daha koyu bir ton: #7CB342) */
}

.close-popup {
  background: rgba(0,0,0,.7);
  cursor: default;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  /* "delay" the visibility transition */
  -webkit-transition: opacity .5s, visibility 0s linear .5s;
  transition: opacity .5s, visibility 0s linear .5s;
}
.popup:target + .close-popup{
  opacity: 1;
  visibility: visible;
  /* cancel visibility transition delay */
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  z-index: 2;
}

.vibebp_myprofile .profile_grid .profile_grid_header {
    z-index:1!important;
}

.sertifika_secenekleri_popup_butonlari {
height: 75px!important;
font-size: 14px!important;
font-weight: bold!important;
margin-left: 0!important!important; /* RTL'de genellikle margin-right sıfırlanır, ancak bu özel bir sıfırlama olabilir, kontrol edilmeli */
padding-left: 10px!important;
padding-right: 10px!important;
border-radius: 5px!important;
color: #fff!important;
background-color: #8BC34A!important; /* Açık Yeşil (Yazım hatası düzeltildi) */
width: 30%!important;
border-color: #1E5631!important; /* Kırmızı -> Koyu Yeşil (Tema bütünlüğü için öneri) */
}

@media screen and (max-width: 700px){

  .sertifika_secenekleri_popup_butonlari {
    width: 80%!important;
  }
  .popup {
    width: 99%;
    max-width: 99%;
  }
}/* End custom CSS */