.qigong-article {
  max-width:900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

.gold-label {
  color: #d4a017;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-top: 70px;
  margin-bottom: 8px;
  text-align: center;
}

article > .gold-label:first-of-type {
  margin-top: 10px;
}

.qigong-article h1 {
  font-size: 2.5em;
  margin: 0 0 30px 0;
  color: #1a1a1a;
  line-height: 1.2;
  text-align: center;
}

.qigong-article section {
  margin-bottom: 40px;
}

.qigong-article h2 {
  font-size: 1.8em;
  color: #1a1a1a;
  margin-bottom: 60px;
  margin-top: 10px;
  line-height: 1.3;
  text-align: center;
}

.qigong-article p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.qigong-intro {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Konténer, amely a teljes tartalmat tartalmazza */
.content-wrapper {
  display: flex; /* Egymás mellé rendezi a szöveget és a képeket */
  align-items: flex-start; /* Felülre igazítás */
  gap: 30px; /* Térköz a szöveg és a képek között */
  padding: 20px;
}

/* A szöveges rész */
.text-content ul {
    list-style-type: none;
    padding-left: 25px; /* A lista behúzása */
}

/* A képeket tartalmazó oszlop */
.image-container {
  display: flex;
  flex-direction: column; /* A képek egymás alá kerülnek */
  gap: 20px; /* Távolság a két kép között */
  flex: 1; /* Az oszlop kisebb szélességet kap */
  margin-top: 20px;
}

.image-wrapper {
  text-align: center;
}

.responsive-img {
  width: 100%;
  max-width: 250px; /* A képek mérete */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.img-caption {
  font-size: 0.8em;
  color: #666;
  margin-top: 5px;
  font-style: italic;
}



/* Konténer, ami egymás mellé rendezi a két oszlopot */
.content-main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch; /* Ezt írd át stretch-re (vagy töröld, ha alapértelmezett) */
}

/* Szöveges oszlop (bal oldal) */
.text-column {
    flex: 3; /* Foglalja el a hely 75%-át */
    min-width: 300px;
}

/* Képes oszlop (jobb oldal) */
.image-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
    justify-content: center; /* Ez most már működni fog, mert az oszlop magasabb */
}
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.img-caption {
    font-size: 0.85em;
    color: #666;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}



.practice-section {
    padding: 20px 0;
    margin-top: 0px;
    border-top: 1px solid #eee;
    /* Állítsd be a weboldalad alapértelmezett méreteire: */
    font-size: 16px;      /* Vagy amennyi az alapszöveged mérete */
    line-height: 1.6;     /* Vagy amennyi az alapszöveged sormagassága */
}

.practice-section h3 {
    color: #2c3e50;
    margin-top: 5px; /* Itt állíthatod a kisebb térközt (pl. 5px vagy 10px) */
    margin-bottom: 15px;
}

.practice-list {
    list-style-type: none;
    padding-left: 25px; /* Növeld ezt az értéket, hogy az egész blokk beljebb kerüljön */
}

.practice-list li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 15px; /* A szöveg és a pötty közötti távolság */
    position: relative;
}

/* Saját "pötty" pozicionálása */
.practice-list li::before {
    content: "●";
    color: #d4af37;
    position: absolute;
    left: 0; /* Ez rögzíti a pöttyöt a doboz bal széléhez */
    top: 0;
}

.conclusion-text {
    margin-top: 20px;
    font-weight: 500;
    font-style: italic;
    color: #444;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.conclusion-box {
    background-color: #f5f5ec;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
    color: #444;
    font-style: normal; /* Ez teszi állóvá a szöveget */
    border: 1px solid #e0e0e0;
    margin-top: 50px;    /* Ez adja a margót a szöveg felett */
}




/* A Jüansen szekció stílusa */
.juansen-section {
    padding: 40px;
    background-color: #fcfaf5; /* Enyhe krémes háttér */
    border: 1px solid #d4af37; /* Arany keret */
    border-radius: 10px;
    margin: 20px 0;
}

.gold-label {
    color: #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.juansen-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

.header-gold {
    color: #c5a059;
    font-weight: bold;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 15px;
}





.juansen-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

.header-gold {
    color: #c5a059;
    font-weight: bold;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

h1 { text-align: center; color: #222; }

.main-text {
    margin-bottom: 30px;
}

.hologram-box {
    background-color: #fff9e6; 
    border-left: 6px solid #c5a059;
    padding: 25px;
    font-style: italic;
    color: #555;
    margin-top: 20px;
}

.center-content {
    text-align: center;
    margin: 30px 0;
}

.main-image {
    /* 1. Százalékos méret (a szülő elem szélességéhez igazodik, pl. a 80%-a) */
    width: 80%; 
    
    width: 500px; 
    /* Fontos: tartsa meg az arányokat, hogy ne nyúljon meg a kép */
    height: auto; 
    
    /* Középre igazítás */
    display: block;
    margin: 0 auto;
    
    border-radius: 10px;
}


/* Ezzel növeled meg a listaelemek betűméretét */
.text-content ul li {
    font-size: 1.1em; /* Az alapértelmezett szövegméret */
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}
.text-content ul li::before {
    content: "●";
    color: #d4af37; /* Az arany szín */
    position: absolute;
    left: 0;
    top: 0;
}

/* Ha csak a félkövér címeket (pl. "Sugárzó forma:") szeretnéd még nagyobbra: */
.text-content ul li strong {
    font-size: 1em; 
}
.qigong-link {
    color: #467d9c;
    text-decoration: none;
    font-weight: 600;
}

/* Opcionális: hogy látszódjon, ha az egér fölé megy (hover effekt) */
.qigong-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.cta-box {
    background-color: #f0f4f8;
    padding: 60px 40px;
    /* A margin-top értékét növeld a kívánt távolság eléréséhez */
    margin-top: 80px; 
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cta-box h2 {
    margin: 15px 0; /* A cím körüli margó biztosítja a helyet */
}

.cta-button {
    display: inline-block; /* Ez teszi lehetővé a középre igazítást text-align-nal */
    background-color: #d4a017;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 25px; /* Távolság a szövegtől */
    transition: background-color 0.3s ease;
}

.jogi-szekcio {
  margin: 80px 0;
  padding: 20px;
  background-color: #f4f4f4; /* Egy fokkal sötétebb, mint az oldalad háttere */
  border: 1px solid #dcdcdc; /* Vékony szürke keret */

  border-radius: 4px;
}

.jogi-nyilatkozat {
  font-size: 11px; /* Kicsi, de olvasható */
  line-height: 1.5;
  color: #666; /* Kicsit világosabb szürke, hogy kevésbé legyen "nyers" */
  text-align: justify;
  margin: 0;
}

.jogi-nyilatkozat strong {
    color: #333;
    display: block;
    margin-bottom: 5px; /* Kisebb hely a cím alatt */
    text-transform: uppercase;
    font-size: 12px; /* A cím legyen még kisebb, mint a szöveg */
    letter-spacing: 0.5px;
}

/* Mobilra optimalizálás */
/* Mobil optimalizálás */
@media (max-width: 768px) {
  /* Sectionök közötti levegő csökkentése */
  .qigong-article section {
    margin-bottom: 15px !important;
  }

  /* Képek igazítása: teljes szélesség, hogy ne legyenek kicsik */
  .responsive-img, .main-image {
    width: 100% !important; /* Felülbírálja a fix 500px-et */
    max-width: 100% !important;
    margin: 15px auto !important;
  }

  /* Oszlopok egymás alá rendezése (ha eddig nem tette volna meg) */
  .content-main-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* Jogi szekció finomítása mobilon */
  .jogi-szekcio {
   
    padding-left: 20px !important;  /* Bal padding mobilon */
    padding-right: 20px !important; /* Jobb padding mobilon */
    margin-left: 10px !important;   /* Hogy ne érjen a képernyő széléhez */
    margin-right: 10px !important;
  }

/* Kiegészítő beállítás a képekhez, hogy ne lógjanak ki */
.image-column {
  position: static !important; /* Mobilon ne legyen sticky, mert zavaró lehet */
}

article .qigong-article section {
    margin-bottom: 0px !important;
    padding-bottom: 0 !important;
  }
article > .gold-label:first-of-type {
    margin-top: 0px !important;
  }

  /* Általános gold-label nullázás */
  .gold-label {
    margin-top: 0px !important;
    margin-bottom: 5px !important;
    padding-top: 0 !important;
  }

  /* Cím és szekció nullázása */
  .qigong-article h2 {
    margin-top: 0px !important;
    margin-bottom: 10px !important;
  }

  .qigong-article section {
    margin-bottom: 10px !important;
  }
  



}

