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; } */
}

.gold-label {
  color: #d4a017;
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-align: center;
}
section {
  width: 100%;
  padding: 60px 20px; /* A 60px-ről 80px-re emelés több levegőt ad a tartalomnak */
  box-sizing: border-box;
  background-color: #ffffff;
  margin-bottom: 20px; /* Hozzáadva, hogy a szekciók ne "ragadjanak" össze */
}

.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;
}
.blog-post {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  line-height: 1.8;
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
}
.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 */
}
.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;
}

.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;
}

section:nth-of-type(even) {
  background-color: #f6f8f8; /* Egy halvány, kellemes szürke/zöldes árnyalat */
}
