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 */
}

/* Konténer az első bekezdésnek és a képnek */
.top-section-flex {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Kép stílusa */
.biguan-image {
  flex: 0 0 35%; /* Kicsit keskenyebb kép, hogy a szöveg domináljon */
  margin: 0;
}

.biguan-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Szöveg konténer */
.text-content {
  flex: 1;
}

.flex-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 55%;
}

.image-stack {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.image-stack img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Alcím stílusa */
.gold-subtitle {
  color: #d4af37;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9em;
  margin-bottom: 10px;
}

/* Rácsos elrendezés a tapasztalatoknak */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.feedback-list {
  display: flex;
  flex-direction: column; /* Ez kényszeríti az elemeket egymás alá */
  gap: 20px; /* Távolság az egyes elemek között */
  max-width: 800px; /* A szöveg olvashatósága érdekében */
  margin: 20px 0;
}

.feedback-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
}

.feedback-item h3 {
  margin-top: 0;
  color: #333;
  font-size: 1.2em;
}

/* Kiemelt megjegyzés stílusa */
.feedback-note {
  background: #fffdf0;
  padding: 15px;
  border-radius: 8px;
  font-style: italic;
  border: 1px solid #eee;
}

.feedback-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Távolság a dobozok között */
  margin-top: 30px;
}

.feedback-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feedback-box:hover {
  transform: translateY(-5px); /* Finom effektus egérrel föléhúzva */
  border-color: #d4af37; /* Arany keret színváltás */
}

.feedback-box h3 {
  margin-top: 0;
  color: #333;

  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.feedback-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}



@media (max-width: 768px) {
    /* 1. Flex elrendezések javítása */
    .top-section-flex, .flex-container {
        flex-direction: column !important;
    }
    .biguan-image, .text-content, .image-stack {
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    /* 2. Szekciók belső távolságának csökkentése (itt állíthatod a felső rést) */
    section {
        padding: 10px 15px !important; 
    }

    /* 3. Címsorok és címkék margóinak nullázása/csökkentése */
    h1 {
        margin-top: 5px !important; 
        margin-bottom: 10px !important;
        font-size: 1.8em !important;
    }

    .gold-label {
        margin-top: 0 !important; /* Fontos: ez tünteti el a felesleges teret felülről */
        margin-bottom: 5px !important;
    }

    /* 4. A tartalom konténerének igazítása */
    .content-wrapper {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* 5. CTA szekció margói */
    .cta-section-biguan {
        padding: 20px !important;
        margin: 20px auto !important;
    }
    .blog-post {
        margin: 10px auto !important; /* Az 50px helyett 10px */
        padding: 10px !important;    /* Kevesebb belső tér */
    }
    
}