/* ------------------------------
   HERO SECTION
------------------------------- */

.hero-section {
  position: relative;
  width: 100%;
  height: 380px;
  background: url("../../images/hero_img.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(3px);
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: "Axiforma Bold", sans-serif;
  font-size: 48px;
  color: rgb(78, 73, 118);
  line-height: 1.2;
}

.hero-subtitle {
  color: black;
}

/* ------------------------------
   PRESENTATION SECTION
------------------------------- */

.presentation-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background: #ffffff;
}

.presentation-container {
  max-width: 1000px;
  padding: 25px 25px;
  text-align: center;
}

.presentation-title {
  font-family: "Axiforma Bold", sans-serif;
  font-size: 28px;
  margin-bottom: 18px;
}

.presentation-text {
  font-size: 17px;
  color: #555;
  line-height: 1.55;
}

/* ----------------------------------
   REGISTER & CONSULT SECTION
----------------------------------- */

.register-consult {
  width: 100%;
  background: rgb(78, 73, 118);
  padding: 50px 0;
  margin: 40px 0;
}

.rc-container {
  width: 100%;
}

.rc-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

.rc-card {
  flex: 1;
  min-width: 340px;
  max-width: 500px;
  color: white;
  text-align: center;
  padding: 30px 25px;
}

.rc-title {
  font-family: "Axiforma Bold", sans-serif;
  font-size: 28px;
  color: rgb(240, 220, 120);
  margin-bottom: 20px;
}

.rc-text {
  color: white;
  margin-bottom: 25px;
  line-height: 1.6;
}

.rc-small {
  display: block;
  margin-top: 12px;
  color: rgb(220, 220, 220);
}

/* ------------------------------
   CHANNELS SECTION
------------------------------- */

.channels-section {
  width: 100%;
  margin-bottom: 50px;
  padding: 20px 0;
}

.channels-title {
  text-align: center;
  font-family: "Axiforma Bold", sans-serif;
  color: rgb(78, 73, 118);
  font-size: 28px;
  margin-bottom: 30px;
}

.channels-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.channel-card {
  width: 220px;
  padding: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.channel-icon {
  height: 60px;
  margin-bottom: 10px;
}

.channel-name {
  font-family: "Axiforma Bold", sans-serif;
  font-size: 18px;
  margin: 10px 0;
}

.channel-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.channel-link {
  font-family: "Axiforma Bold", sans-serif;
  color: rgb(120, 175, 43);
  font-size: 15px;
  text-decoration: none;
}

.channel-link:hover {
  text-decoration: underline;
}
