    :root {
      font-size: 16px;
      ---header-bg-color: #fff;
    }

    * {
      margin: 0px;
      padding: 0px;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    html::-webkit-scrollbar {
      width: 0px;
    }

    body {
      width: 100%;
      min-height: 100vh;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    a,
    a:active,
    a:link,
    a:before,
    a:after {
      color: inherit;
      text-decoration: none;
    }

    ::selection {
      background-color: rgb(222, 161, 40);
    }

    img {
      user-select: none;
      width: 100%;
    }

.card_section {
  padding: 1.3rem 2rem;
  position: relative;
  overflow: hidden;
}

.card_section .title_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 6px;
}

.card_section .title_wrapper .title {
  width: 80%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
}

.card_section .title_wrapper .title .border {
  width: 28px;
  min-width: 28px;
  height: 5px;
  border-radius: 8px;
  animation: wave 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes wave {
  0% { filter: brightness(0.95); }
  50% { filter: brightness(1.2); }
  100% { filter: brightness(0.95); }
}

.card_section .title_wrapper .title p {
  font-family: 'Merriweather', serif;
  font-size: clamp(0.95rem, 1.6vw + 0.2rem, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.4px;
  margin: 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}


.card_section .title_wrapper .title:hover p {
  filter: brightness(1.2);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

@media(max-width:991px) {
  .card_section .title_wrapper .title {
    width: 90%;
  }
}

@media(max-width:600px) {
  .card_section .title_wrapper .title {
    gap: 10px;
  }

  .card_section .title_wrapper .title .border {
    width: 22px;
    height: 4px;
  }

  .card_section .title_wrapper .title p {
    font-size: 1rem;
  }
}

