/* Az új arany kategória címke a H2 felett */

h1 {
  text-align: center;
  color: #d4a017; /* Ha a főcímet is aranyra szeretnéd */
}

/* H2 címek középre igazítása */
h2 {
  text-align: center;
  /* A csillag eltüntetéséhez töröld ki a HTML-ből a ✦ karaktert, 
       vagy ha ragaszkodsz a CSS-hez, használj ::before { content: none; } */
}

/* Ha a section címkéket is középre szeretnéd */
.section-label {
  text-align: center;
}

.section-label {
  color: #d4a017;
  font-weight: 600;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 30px;
  margin-bottom: 5px;
}

/* A korábbi CSS-ed kiegészítve */
.blog-post {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  line-height: 1.8;
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
}

.gold-label {
  color: #d4a017;
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-align: center;
}

.blog-post h1 {
  font-size: 2.5em;
  text-align: center !important;
  color: #1a1a1a !important; /* Fekete szín */
  border-bottom: 3px solid #d4a017;
  padding-bottom: 20px;
  margin-bottom: 40px;
  display: block;
  width: 100%;
}
.blog-post h2 {
  color: #1a1a1a;
  margin-top: 0;
  font-size: 1.6em;
  text-align: center; /* H2 középre */
}

.disclaimer-section {
  max-width: 800px;
  margin: 60px auto 20px auto;
  padding: 20px;
  font-size: 0.85em; /* Kisebb betűméret a diszkrét megjelenéshez */
  color: #7f8c8d; /* Szürke szín */
  line-height: 1.5;
  text-align: justify;
}

.disclaimer-section hr {
  border: 0;
  border-top: 1px solid #d4a017; /* Arany vonal a választáshoz */
  margin-bottom: 20px;
}
.blog-image {
  display: block;
  max-width: 70%;
  height: auto;
  margin: 20px auto 40px auto;
  border-radius: 8px;
}
/* CTA szekció doboz */
.cta-section-biguan {
  background-color: #f9f9f9;
  border: 1px solid #d4a017;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 700px;
}

/* CTA gomb stílusa */
.cta-button-biguan {
  display: inline-block;
  background-color: #d4a017;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-button-biguan:hover {
  background-color: #b38612;
}

/* Az alapszakasz stílusa (páratlan) */
section {
  background-color: #ffffff; /* Fehér háttér */
  padding: 40px 20px;
}

/* Minden második szakasz stílusa (páros) */
section:nth-of-type(even) {
  background-color: #f6f8f8; /* Egy halvány, kellemes szürke/zöldes árnyalat */
}


.custom-link {
    color: #467d9c !important;
    font-weight: 600;
    text-decoration: none;
}

/* Opcionális: Ha szeretnéd, hogy ráhúzáskor (hover) is történjen valami: */
.custom-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}



/* Mobilbarát beállítások */
@media (max-width: 768px) {
  .cta-section {
    padding: 25px; /* Mobilon is szellősebb */
    margin: 20px 15px;
  }

  .cta-button {
    padding: 10px 15px; /* Még kompaktabb gomb mobilon */
  }
 section {
        width: 100% !important; 
        padding: 40px 15px !important; /* Itt van az oldalmargó mobilon */
        box-sizing: border-box !important;
    }

    /* 2. Minden tartalmi elem a szekción belül */
    section h2, 
    section p, 
    section .blog-image, 
    section .cta-section {
        max-width: 100% !important; /* Hagyjuk, hogy a szekció paddingje kezelje a margót */
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 3. A CTA doboz speciális kezelése mobilon */
    .cta-section {
        margin: 20px 0 !important; /* Ne legyen dupla margó */
        padding: 20px !important;
    }
}
