/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Prosto+One&display=swap');

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --first-color: #000000;
  --first-color-alt: #222222;
  --title-color: #ffffff;
  --text-color: #e0e0e0;
  --text-color-light: #a0a0a0;
  --body-color: #0a0a0a;
  --container-color: #111111;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --accent-color: #007BFF;
  --logo-font: "Prosto One";

  /*========== Font and Typography ==========*/
  --body-font: "Poppins", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --big-font-size: 2.5rem;
  --h1-font-size: 1.875rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /*========== Font Weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Margins ==========*/
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== Z-index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.875rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1.125rem;
    --small-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/*========== CSS Reset ==========*/
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*========== CLASS CSS ==========*/
.section {
  padding: 7rem 0;
}

.section-title,
.section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-color);
}

.section-subtitle {
  display: block;
  color: var(--accent-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--small-font-size);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 1200px;
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.bd-grid {
  display: grid;
  gap: 2rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

/*========== NAV ==========*/
.nav {
  max-width: 1200px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  .nav_menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 3rem 0 2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.95);
    transition: 0.4s;
    z-index: var(--z-fixed);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
}

.nav_item {
  margin-bottom: var(--mb-3);
}

.nav_link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: color 0.3s;
  position: relative;
}

.nav_link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

.nav_link:hover::after {
  width: 100%;
}

.hidden_item {
  display: none;
}

.nav_toggle {
  display: block;
  z-index: var(--z-fixed);
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  z-index: 100;
}

/* Hamburger menu lines */
.line {
  fill: none;
  stroke: var(--text-color);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.nav_logo {
  color: var(--title-color);
  /* All white color */
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  z-index: var(--z-fixed);
  font-family: var(--logo-font);
  letter-spacing: 0.5px;
  text-transform: lowercase;
  /* Ensure all text is lowercase */
  display: flex;
  align-items: flex-end;
  /* Align items at the bottom */
}

.nav_link:hover {
  color: var(--accent-color);
}

/* Show Menu */
.show-menu {
  top: var(--header-height);
}

/* Active Menu */
.active-link {
  color: var(--accent-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Scroll Top */
.scrollTop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background: var(--accent-color);
  border-radius: 0.5rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  visibility: hidden;
}

.scrollTop:hover {
  background-color: #007BFF;
  transform: translateY(-0.25rem);
}

.scrollTop_icon {
  font-size: 1.5rem;
  color: var(--title-color);
}

/* Show scrollTop */
.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home {
  position: relative;
  padding: 12rem 0 8rem;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.pexels.com/photos/4481257/pexels-photo-4481257.jpeg') center/cover no-repeat;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 60, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.home_container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home_data {
  max-width: 800px;
  margin: 0 auto;
}

.home_title {
  font-size: var(--big-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
  font-weight: var(--font-bold);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
}

.home_subtitle {
  font-size: var(--h2-font-size);
  color: var(--accent-color);
  margin-bottom: var(--mb-3);
  font-weight: var(--font-semi-bold);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.7s;
}

.home_description {
  color: var(--text-color);
  margin-bottom: var(--mb-4);
  font-size: var(--normal-font-size);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.9s;
}

.home_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 1.1s;
}

.button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--title-color);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: all 0.3s;
  text-align: center;
  border: 2px solid var(--accent-color);
}

.button:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 60, 0, 0.2);
}

.button-outline {
  background-color: transparent;
  color: var(--accent-color);
}

.button-outline:hover {
  background-color: var(--accent-color);
  color: var(--title-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/*========== SERVICES ==========*/
.services {
  background-color: var(--container-color);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(255, 60, 0, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 60, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.services_container {
  row-gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services_content {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s;
}

.services_content:hover {
  transform: translateY(-10px);
}

.services_img {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--mb-3);
  fill: var(--accent-color);
  transition: transform 0.3s;
}

.services_content:hover .services_img {
  transform: scale(1.1) rotate(5deg);
}

.services_title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
  font-weight: var(--font-semi-bold);
}

.services_description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/*========== EARN MONEY ==========*/
.earn {
  background-color: var(--body-color);
  position: relative;
}

.earn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 20%, rgba(255, 60, 0, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 10% 80%, rgba(255, 60, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.earn_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.earn_container {
  max-width: 1200px;
  margin: 0 auto;
}

.earn_item {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  gap: 4rem;
}

.earn_item-reverse {
  flex-direction: row-reverse;
}

.earn_img-container {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.earn_item-reverse .earn_img-container {
  transform: translateX(50px);
}

.earn_img-container.in-view {
  opacity: 1;
  transform: translateX(0);
}

.earn_img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s;
}

.earn_img:hover {
  transform: scale(1.05);
}

.earn_content {
  flex: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.earn_content.in-view {
  opacity: 1;
  transform: translateY(0);
}

.earn_title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
  color: var(--title-color);
  font-weight: var(--font-bold);
}

.earn_description {
  margin-bottom: 2rem;
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--text-color);
}

.earn_button {
  background-color: var(--accent-color);
  color: var(--title-color);
}

/*========== ABOUT ==========*/
.about {
  background-color: var(--container-color);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 60, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about_container {
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

.about_data {
  max-width: 800px;
  margin: 0 auto;
}

.about_description {
  margin-bottom: var(--mb-4);
  font-size: var(--normal-font-size);
  line-height: 1.7;
  color: var(--text-color);
}

.about_img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease;
}

.about_img.in-view {
  opacity: 1;
  transform: scale(1);
}

/*========== GALLERY ==========*/
.gallery {
  background-color: var(--body-color);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 60, 0, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 60, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.gallery_header {
  max-width: 960px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  text-align: center;
}

.gallery_track {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 300px;
}

.gallery_slide {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  align-items: center;
  animation: slide 40s linear infinite;
}

.gallery_slide img {
  height: 80%;
  width: auto;
  margin: 0 1rem;
  border-radius: 0.5rem;
  transition: transform 0.3s;
  object-fit: cover;
}

.gallery_slide img:hover {
  transform: scale(1.05);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*========== CONTACT US ==========*/
.contact {
  background-color: var(--container-color);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 60, 0, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 20% 80%, rgba(255, 60, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.contact_container {
  text-align: center;
  padding: 3rem;
}

.contact_description {
  margin-bottom: var(--mb-4);
  font-size: var(--normal-font-size);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color);
}

/*========== APP ==========*/
.app {
  background-color: var(--body-color);
  position: relative;
}

.app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 60, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.app_wrapper {
  width: 100%;
}

.app_container {
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.app_img {
  width: 100%;
  max-width: 500px;
  justify-self: center;
  margin-bottom: var(--mb-4);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.app_img.in-view {
  opacity: 1;
  transform: translateY(0);
}

.app_data {
  text-align: center;
}

.app_description {
  margin-bottom: var(--mb-4);
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.app_stores {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--mb-4);
  flex-wrap: wrap;
}

.app_store {
  width: 180px;
  height: auto;
  transition: transform 0.3s;
}

.app_store:hover {
  transform: scale(1.05);
}

/*========== FOOTER ==========*/
.footer {
  background-color: #000;
  color: var(--text-color);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 60, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  padding: 0 1rem;
}

.footer_logo {
  color: var(--title-color);
  /* All white color */
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  display: block;
  font-family: var(--logo-font);
  letter-spacing: 0.5px;
  text-transform: lowercase;
  /* Ensure all text is lowercase */
  display: flex;
  align-items: flex-end;
  /* Align items at the bottom */
}

/* Make the "u" larger than "ven" in footer */
.footer_logo .logo-u {
  font-size: 2.2rem;
  /* Larger size for the "u" */
  line-height: 1;
  /* Remove extra line height */
}

.footer_logo .logo-ven {
  font-size: 1.6rem;
  /* Slightly smaller size for "ven" */
  line-height: 1;
  /* Remove extra line height */
  padding-bottom: 0.15rem;
  /* Fine-tune vertical alignment */
}

.footer_description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer_social {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s;
}

.footer_social:hover {
  color: var(--accent-color);
}

.footer_title {
  color: var(--title-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-semi-bold);
  position: relative;
  display: inline-block;
}

.footer_title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 3px;
  background: var(--accent-color);
}

.footer_link {
  color: var(--text-color-light);
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s;
}

.footer_link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer_copy {
  text-align: center;
  margin-top: 4rem;
  color: var(--text-color-light);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #007BFF;
}

/*========== MEDIA QUERIES ==========*/
/* Mobile devices (768px and down) */
@media screen and (max-width: 768px) {
  .home {
    padding: 8rem 0 5rem;
    background-position: 70% center;
  }

  .home_title {
    font-size: 2.5rem;
  }

  .home_subtitle {
    font-size: 1.5rem;
  }

  .home_buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .earn_item,
  .earn_item-reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .earn_img {
    height: 300px;
  }

  .gallery_slide {
    animation: slide-mobile 30s linear infinite;
  }

  @keyframes slide-mobile {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .nav_menu {
    padding: 2rem 0;
  }

  .app_store {
    width: 150px;
  }

  /* Show hamburger menu on mobile */
  .nav_toggle {
    display: block;
  }

  /* Hide nav items on mobile by default */
  .nav_list {
    display: none;
  }

  /* Show nav items when menu is open */
  .show-menu .nav_list {
    display: block;
  }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) {
  .nav_list {
    display: flex;
    align-items: center;
  }

  .nav_item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  .nav_toggle {
    display: none;
  }

  .home_container {
    text-align: left;
  }

  .home_buttons {
    justify-content: flex-start;
  }

  .about_container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
  }

  .app_container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .app_data {
    text-align: left;
  }

  .app_stores {
    justify-content: flex-start;
  }
}

/* Large devices (desktops, 1024px and up) */
@media screen and (min-width: 1024px) {
  .home_title {
    font-size: 4rem;
  }

  .services_container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*========== POLICY & TERMS PAGES ==========*/
.privacy_content,
.terms_content,
.security_content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy_section,
.terms_section,
.security_section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy_section:last-child,
.terms_section:last-child,
.security_section:last-child {
  border-bottom: none;
}

.privacy_subtitle,
.terms_subtitle,
.security_subtitle {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}

.privacy_content h4,
.terms_content h4,
.security_content h4 {
  color: var(--accent-color);
  margin: 1.5rem 0 0.5rem;
  font-weight: var(--font-semi-bold);
}

.privacy_content ul,
.terms_content ul,
.security_content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy_content li,
.terms_content li,
.security_content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy_last-updated,
.terms_last-updated,
.security_last-updated {
  text-align: center;
  color: var(--text-color-light);
  margin-bottom: 3rem;
  font-style: italic;
}

address {
  font-style: normal;
  line-height: 1.6;
  margin-top: 1rem;
}

/*========== FAQ PAGE ==========*/
.faq_category {
  margin-bottom: 3rem;
}

.faq_category-title {
  color: var(--title-color);
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.faq_item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq_question {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq_question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq_question h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin: 0;
  font-size: 1.1rem;
}

.faq_question i {
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq_answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq_answer.active {
  padding: 1.5rem;
  max-height: 500px;
}

.faq_answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {

  .privacy_section,
  .terms_section,
  .security_section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .faq_question {
    padding: 1rem;
  }

  .faq_question h4 {
    font-size: 1rem;
    margin-right: 1rem;
  }

  .faq_answer.active {
    padding: 1rem;
  }
}

/* Make the "u" larger than "ven" */
.nav_logo .logo-u {
  font-size: 1.8rem;
  /* Larger size for the "u" */
  line-height: 1;
  /* Remove extra line height */
}

.nav_logo .logo-ven {
  font-size: 1.3rem;
  /* Slightly smaller size for "ven" */
  line-height: 1;
  /* Remove extra line height */
  padding-bottom: 0.1rem;
  /* Fine-tune vertical alignment */
}