/* Alapbeállítások a kép stílusa alapján */
.hero-section-bemutato {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container-bemutato {
  width: 100%;             /* Biztosítja, hogy alapból kitöltse a teret */
  max-width: 1200px;       /* ITT ÁLLÍTOD AZ EGÉSZ MAXIMÁLIS SZÉLESSÉGÉT! */
  margin: 0 auto;          /* Ez rakja középre az egész blokkot */
  padding: 0 20px;         /* Oldalsó belső távolság, hogy mobilon ne tapadjon a kijelző széléhez */
}

.category-tag {
    color: #d4a017; /* Az arany árnyalat a képről */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

.main-title1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 50px auto;
    color: #555;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px; /* Jó nagy távolság a két oldal között */
}

.text-side {
    flex: 1;
}

.text-side p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Finom árnyék a mélységnek */
}



/* Mobilnézet optimalizálás */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 40px 15px;
    }
}

.program-section {
    padding: 100px 20px;
    background-color: #f9f9f9; /* Halvány szürke háttér, hogy elváljon a Hero résztől */
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.program-card:hover {
    transform: translateY(-2px);
    border-bottom: 4px solid #d4a017;
}

.card-icon {
    font-size: 2.5rem;
    color: #d4a017;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.program-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.duration {
    display: inline-block;
    padding: 5px 15px;
    background: #fdf6e3;
    color: #d4a017;
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.85rem;
}

.platform-info {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #444;
}

.platform-info i {
    color: #d4a017;
    margin-right: 10px;
}

/* Mobil igazítás */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .program-section {
        padding: 60px 15px;
    }
}

.registration-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.registration-wrapper {
  display: grid;
  /* A '1fr' a jobb oldal (űrlap), az '1.2fr' a bal oldal (szöveg).
     Ha a bal oldalt még keskenyebbre akarod, vedd lejjebb (pl. 1.1fr-re vagy simán 1fr-re).
  */
  grid-template-columns: 1fr 1fr; 
  gap: 50px;          /* Jó nagy, szellős távolság a két oldal között */
  align-items: center; /* Függőlegesen szépen egymáshoz igazítja őket */
}

.info-side {
    flex: 1;
}

.section-title-small {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.registration-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.benefit-list li {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.benefit-list li i {
    color: #d4a017;
    margin-right: 12px;
    font-size: 1.2rem;
}

.instructor-brief {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mini-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4a017;
}

/* Űrlap doboz stílusa */
.form-side {
    flex: 1;
    width: 100%;
}

.form-container-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.form-help-text {
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
    color: #467d9c;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Mobil optimalizálás */
@media (max-width: 992px) {
    .registration-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-side {
        text-align: center;
    }
    
    .benefit-list li {
        justify-content: center;
    }

    .instructor-brief {
        justify-content: center;
    }
    
    .form-container-box {
        padding: 25px;
    }
}

.faq-testimonial-section {
    padding: 100px 20px;
    background-color: #f5f9fc; /* Az aranyhoz passzoló, nagyon halvány sárgás háttér */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: #d4a017;
    font-style: normal;
}

.section-divider {
    border: 0;
    border-top: 1px solid #e0d0b0;
    margin: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
}

.final-cta-wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
  
  /* ÚJ SOROK A SZÉLESSÉG KORLÁTOZÁSÁHOZ: */
  max-width: 800px;   /* Ez megakadályozza, hogy túl szélesre nyúljon a szöveg */
  margin-left: auto;  /* Ez a két sor pedig gyönyörűen középre */
  margin-right: auto; /* rendezi a teljes blokkot a monitoron */
}

.final-cta-wrapper p {
    font-weight: 400;
    margin-bottom: 50px;
}

/* Másodlagos CTA gomb stílusa */
.cta-button-secondary {
    display: inline-block;
    border: 2px solid #d4a017;
    color: #d4a017;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #d4a017;
    color: white;
}

/* Mobilnézet */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.about-teacher-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.about-image {
    flex: 1;
}

.teacher-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #fdf6e3; /* Egy dekoratív keret az arany árnyalatával */
}

.about-text {
    flex: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

.credentials {
    margin-top: 30px;
}

.credentials p {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.credentials i {
    color: #d4a017;
    margin-right: 15px;
}

/* Mobilnézet */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .teacher-img {
        box-shadow: 10px 10px 0px #fdf6e3;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   LISTAMESTER ŰRLAP TESTRESZABÁSA (A meglévő stílushoz igazítva)
   ========================================================================== */

.csikung-lm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

/* Mezők csoportosítása */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #467d9c; /* A kódodban használt sötét szín */
}

.form-group label i {
    color: #467d9c;
    margin-right: 5px;
}

/* Input mezők stílusa */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee; /* Passzol az .instructor-brief border színéhez */
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #ffffff;
}

/* Input fókusz állapot */
.form-input:focus {
    border-color: #d4a017;
    outline: none;
    box-shadow: 0 0 8px rgba(212, 160, 23, 0.2);
}

/* Adatvédelmi checkbox elrendezése */
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-top: 5px;
}

.form-checkbox {
    margin-top: 4px;
    cursor: pointer;
    accent-color: #467d9c; 
    width: 16px;
    height: 16px;
}

.checkbox-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #555;
}

.checkbox-label a {
    color: #467d9c;
    text-decoration: underline;
    font-weight: 700;
}

.checkbox-label a:hover {
    color: #1a1a1a;
}

/* Főkonverziós Arany Gomb */
.submit-button-gold {
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px; /* Opcionális: ha kerekített gombot szeretnél, írd át 8px-re. A 4px a másodlagos gombodhoz passzol. */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.2);
    width: 100%;
}

.submit-button-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(212, 160, 23, 0.4);
    background: linear-gradient(135deg, #e5b228 0%, #d4a017 100%);
}

.submit-button-gold:active {
    transform: translateY(0);
}

/* Biztonsági apróbetűs rész */
.secure-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 5px;
}

.secure-text i {
    color: #d4a017;
}

.trust-badges-container {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Ez a minimális távolság a két sor között */
    margin-top: 25px; /* Távolság a sárga gomb aljától */
    padding-left: 5px;
}



.trust-badge2 {
    display: flex;
    align-items: center;
    gap: 12px; /* Távolság az ikon és a szöveg között */
    text-align: left;
}

.trust-badge2 i {
    color: #24cc76; /* Pont olyan szép zöld, mint a képeden */
    font-size: 1.2rem;
    flex-shrink: 0; /* Mobilnézetben sem engedi összenyomódni az ikont */
}

.trust-badge2 span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.4;
}


.instructor-benefits-list {
    list-style-type: none; /* Ez tünteti el a fekete pöttyöket */
    padding-left: 0;       /* Ez behúzza a sorokat a bal szélre, hogy ne maradjon ott a pöttyök helye */
    margin: 0;
}

.instructor-benefits-list li {
    margin-bottom: 10px;   /* Opcionális: távolság a listaelemek között */
    display: flex;
    align-items: center;
    gap: 10px;             /* Távolság az emoji és a szöveg között */
}

/* Kártya alsó része: Dátum és Időtartam */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* A kártya aljára tolja a láblécet, ha eltérő a szöveghossz */
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.card-footer .date {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.95rem;
}

.card-footer .date i {
  color: #319795; /* Kellemes kékeszöld/teal szín az ikonnak */
  margin-right: 6px;
}

.card-footer .duration {
  background-color: #edf2f7;
  color: #4a5568;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}


.registration-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left; /* Biztosítjuk, hogy balra legyen zárva */
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Időpont kiemelő box */
.dates-highlight-box {
  background-color: #fcf8f2;
  border-left: 4px solid #b7791f;
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  margin: 15px 0;
  max-width: 450px; /* Megakadályozza, hogy túl szélesre nyúljon */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02); /* Finom mélység */
}

.dates-highlight-box h3 {
  font-size: 1.05rem;
  color: #b7791f;
  margin-top: 0;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date-list li {
  font-size: 1rem;
  color: #2d3748;
  display: flex;
  justify-content: space-between; /* Szépen elválasztja az alkalmat és az időpontot */
  gap: 20px;
  padding-bottom: 4px;
}

/* Hozzáférés infó és előnyök */
.access-info {
  font-size: 0.95rem;
  color: #718096;
  line-height: 1.5;
  
  /* ÚJ SOROK: */
  margin-top: 40px;    /* Távolság a felette lévő időpontos doboztól */
  margin-bottom: 40px; /* Távolság az alatta lévő pipás listától */
}

.access-info i {
  color: #4a5568;
  margin-right: 4px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2d3748;
  font-weight: 500;
}

.benefits-list li i {
  color: #b7791f; /* Arany pipa ikonok */
}


.hero-cta {
  display: block;
  width: max-content; /* Csak akkora legyen, amilyen hosszú a szöveg */
  margin: 25px auto 0 auto; /* A jobb és bal 'auto' teszi középre */
  text-align: center;
}


/* Mobil finomhangolás */
@media (max-width: 992px) {
    .form-container-box {
        background: #ffffff; /* Biztosítja a kontrasztot mobilon is */
    }
    
    .submit-button-gold {
        font-size: 1rem;
        padding: 14px 20px;
    }
}
/* --- REGISZTRÁCIÓS SZEKCIÓ RESZPONZÍV JAVÍTÁSA --- */

/* Alapértelmezett elrendezés: Mobilnézet (Mobile-First megközelítés vagy töréspont) */
@media (max-width: 991px) {
  
  /* 1. Egymás alá rendezzük a szöveges oldalt és az űrlapot */
  .registration-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Biztonságos távolság a két blokk között */
    width: 100%;
    padding: 0 15px; /* Ne érjen ki a telefon szélére a szöveg */
    box-sizing: border-box;
  }

  /* 2. Biztosítjuk, hogy mindkét oldal kihasználja a teljes szélességet */
  .registration-info, 
  .form-side {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  /* 3. A sárga dátumbox javítása, hogy ne nyomódjon össze */
  .dates-highlight-box {
    width: 100% !important;
    box-sizing: border-box;
    padding: 20px 15px !important; /* Kicsit kisebb belső padding mobilra */
  }

  .date-list {
    padding-left: 15px !important;
  }
  
  .date-list li {
    font-size: 15px; /* Könnyebb olvashatóság mobilon */
    line-height: 1.5;
    margin-bottom: 8px;
  }

  /* 4. Az űrlap fehér dobozának javítása (hogy ne lógjon le) */
  .form-container-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 20px !important; /* Optimális belső távolság mobilon */
    margin: 0 auto;
  }

  /* 5. Az input mezők és a gomb méretezése */
  .form-input,
  .submit-button-gold {
    width: 100% !important;
    box-sizing: border-box;
  }

  /* 6. Checkboxok igazítása (hogy a hosszú szöveg szépen törjön) */
  .form-checkbox-group {
    display: flex;
    align-items: flex-start; /* Fentről indítjuk a szöveget, nem középről */
    gap: 10px;
  }

  .form-checkbox {
    margin-top: 4px; /* Finomhangolás a szöveg első sorához */
    flex-shrink: 0;  /* Ne engedjük, hogy a checkbox összenyomódjon */
  }
}