:root {
  --accent-gradient: linear-gradient(180deg, #29d6d4, #00b7e1, #0093e3, #3068cd, #77309a);
  --accent-color: #3068cd;
  --white: #fff;
  --black: #000;
  --transition-speed: 0.4s;
  --max-content-width: 1320px;
  --text-font: 'Cambo', serif;
  --heading-font: 'Unna', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: var(--text-font);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  color: var(--black);
  background: #f9f9f9;
}

.vb_header {
  background: var(--accent-gradient);
  color: var(--white);
  padding: 1rem 2rem;
  position: relative;
}

.vb_header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vb_header__left,
.vb_header__center,
.vb_header__right {
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

.vb_header__logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: bold;
}

.vb_header__logo-img {
  width: 150px;
  height: auto;
}

.vb_header__nav ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vb_header__item a {
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-speed);
}

.vb_header__item a:hover {
  color: #ffd700;
}

.vb_header__dropdown-trigger {
  position: relative;
  cursor: pointer;
}

.vb_header__menu {
  min-height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.vb_header__dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  z-index: 9999;
  min-width: 150px;
  min-height: 190px;
  border-radius: 5px;
  overflow: hidden;
}

.vb_header__dropdown li a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--white);
  transition: color var(--transition-speed);
}

.vb_header__dropdown li a:hover {
  color: #ffd700;
}

.vb_header__dropdown-trigger:hover .vb_header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  
}

@media (min-width: 769px) {
  .vb_header__dropdown {
    height: 350px;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    z-index: 999;
  }

  .vb_header__dropdown-trigger:hover .vb_header__dropdown {
    height: 300px;
    overflow: visible;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .vb_header__dropdown-trigger.active .vb_header__dropdown {
    min-height: 350px;
    overflow: visible;
    opacity: 1;
  }
}

.vb_header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  margin-bottom: 11px;
}

.vb_header__burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-speed);
}

.vb_header__bottom {
  text-align: center;
  padding: 0.5rem 0;
  font-style: italic;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .vb_header__center {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    animation: slideDown 0.5s ease forwards;
  }

  .vb_header__center.active {
    display: flex;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .vb_header__burger {
    display: flex;
  }

  .vb_header__nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }

  .vb_header__dropdown {
    background: rgba(0, 0, 0, 0.9);
    padding: 0;
    z-index: 1111;
  }
}

.vb_hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-image: url('../vb-images/vb-background-image-1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

.vb_hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.vb_hero-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-content-width);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease forwards;
}

.vb_hero-section__title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vb_hero-section__description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.vb_hero-section__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.vb_hero-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition-speed) ease;
}

.vb_hero-section__card:hover {
  transform: translateY(-5px);
}

.vb_hero-section__icon {
  font-size: 2rem;
  color: var(--accent-color);
}

.vb_hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.vb_hero-section__btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  background: var(--accent-color);
  border-radius: 30px;
  transition: background var(--transition-speed), transform var(--transition-speed);
}

.vb_hero-section__btn:hover {
  background: #005fa3;
  transform: scale(1.05);
}

.vb_hero-section__btn--alt {
  background: transparent;
  border: 2px solid var(--white);
}

.vb_hero-section__btn--alt:hover {
  background: var(--white);
  color: var(--black);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .vb_hero-section__title {
    font-size: 2.2rem;
  }

  .vb_hero-section__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .vb_hero-section__title {
    font-size: 2rem;
  }

  .vb_hero-section__cards {
    gap: 1.5rem;
  }

  .vb_hero-section__card {
    padding: 1.2rem;
  }

  .vb_hero-section__btn,
  .vb_hero-section__btn--alt {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .vb_hero-section__title {
    font-size: 1.8rem;
  }

  .vb_hero-section__description {
    font-size: 0.95rem;
  }

  .vb_hero-section__cards {
    flex-direction: column;
    align-items: center;
  }

  .vb_hero-section__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .vb_hero-section__btn,
  .vb_hero-section__btn--alt {
    width: 100%;
    text-align: center;
  }
}

.vb_platform-section {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vb_platform-section__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vb_platform-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.vb_platform-section__title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vb_platform-section__description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.vb_platform-section__cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vb_platform-section__card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 2rem;
  width: 360px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.vb_platform-section__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.vb_platform-section__card-logo {
  width: 155px;
  height: auto;
  margin-bottom: 1rem;
}

.vb_platform-section__card-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.vb_platform-section__features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
  min-height: 135px;
}

.vb_platform-section__features li {  
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vb_platform-section__features i {
  color: var(--accent-color);
  font-size: 1rem;
}

.vb_platform-section__rating {
  display: flex;
  gap: 0.2rem;
  color: gold;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.vb_platform-section__button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.vb_platform-section__button:hover {
  background: #005fa3;
}

@media (max-width: 1024px) {
  .vb_platform-section__card {
    width: 320px;
  }

  .vb_platform-section__title {
    font-size: 2.2rem;
  }

  .vb_platform-section__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .vb_platform-section {
    padding: 4rem 1.5rem;
  }

  .vb_platform-section__cards {
    gap: 1.5rem;
  }

  .vb_platform-section__card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .vb_platform-section__title {
    font-size: 2rem;
  }

  .vb_platform-section__description {
    font-size: 0.95rem;
  }

  .vb_platform-section__card {
    padding: 1.5rem;
  }

  .vb_platform-section__card-logo {
    width: 60px;
  }

  .vb_platform-section__card-title {
    font-size: 1.3rem;
  }

  .vb_platform-section__features li {
    font-size: 0.9rem;
  }

  .vb_platform-section__button {
    width: 100%;
    text-align: center;
  }
}

.vb_why-choose {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-image: url('../vb-images/vb-background-image-2.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vb_why-choose__overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.vb_why-choose__container {
  position: relative;
  z-index: 2;
  max-width: var(--max-content-width);
  margin: 0 auto;
  text-align: center;
}

.vb_why-choose__header {
  margin-bottom: 4rem;
}

.vb_why-choose__title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.vb_why-choose__description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
  color: var(--white);
}

.vb_why-choose__features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vb_why-choose__feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  width: calc(33% - 1.5rem);
  min-height: 180px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(5px);
  text-align: center;
}

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

.vb_why-choose__feature i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.vb_why-choose__feature p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

@media (max-width: 1024px) {
  .vb_why-choose__feature {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .vb_why-choose__features {
    flex-direction: column;
    align-items: center;
  }

  .vb_why-choose__feature {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .vb_why-choose__title {
    font-size: 2rem;
  }

  .vb_why-choose__description {
    font-size: 0.95rem;
  }

  .vb_why-choose__feature i {
    font-size: 1.3rem;
  }

  .vb_why-choose__feature p {
    font-size: 0.9rem;
  }
}

.vb_about-section {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
  text-align: center;
}

.vb_about-section__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.vb_about-section__title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.vb_about-section__description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
  display: block;
  color: var(--black);
}

.vb_about-section__cards {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vb_about-section__card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 2.5rem;
  width: calc(50% - 2rem);
  transition: transform var(--transition-speed) ease;
}

.vb_about-section__card:hover {
  transform: translateY(-8px);
}

.vb_about-section__card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.vb_about-section__card h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.vb_about-section__card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
}

.vb_about-section__button {
  display: inline-block;
  margin-top: 4rem;
  padding: 0.8rem 2rem;
  background: var(--accent-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background var(--transition-speed) ease;
}

.vb_about-section__button:hover {
  background: #005fa3;
}

@media (max-width: 768px) {
  .vb_about-section {
    padding: 5rem 0.4rem;
  }

  .vb_about-section__card {
    width: 100%;
  }

  .vb_about-section__button {
    width: 100%;
    text-align: center;
    margin-top: 4rem;
  }
}

.vb_responsibility-partners {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vb_responsibility-partners__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.vb_responsibility-partners__block {
  background: #f9f9f9;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  line-height: 1.8;
}

.vb_responsibility-partners__title,
.vb_responsibility-partners__subtitle {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.vb_responsibility-partners__text {
  font-size: 1.05rem;
  color: var(--black);
  position: relative;
}

.vb_responsibility-partners__text i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.vb_responsibility-partners__text a {
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-speed);
}

.vb_responsibility-partners__text a:hover {
  color: #005fa3;
}

.vb_responsibility-partners__block--partners {
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}

.vb_responsibility-partners__info {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.vb_responsibility-partners__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.vb_responsibility-partners__logo {
  filter: brightness(0.9) contrast(1.1);
  transition: transform var(--transition-speed) ease;
}

.vb_responsibility-partners__logo:hover {
  transform: scale(1.05);
}

.vb_responsibility-partners__age {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--white);
}

.vb_responsibility-partners__age-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {

  .vb_responsibility-partners {
    padding: 5rem 0.4rem;
  }

  .vb_responsibility-partners__title {
    font-size: 2rem;
  }

  .vb_responsibility-partners__subtitle {
    font-size: 1.8rem;
  }

  .vb_responsibility-partners__logos {
    gap: 1.5rem;
    flex-direction: column;
  }

  .vb_responsibility-partners__age {
    justify-content: flex-start;
  }
}

.vb_footer {
  background: var(--accent-gradient);
  color: var(--white);
  font-family: var(--text-font);
  padding: 3rem 2rem;
}

.vb_footer__top {
  display: flex;
  height: auto;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vb_footer__about {
  flex: 1 1 300px;
  width: 280px;
}

.vb_footer__title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vb_footer__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.vb_footer__links {
  flex: 1 1 300px;
  width: 280px;
}

.vb_footer__menu {
  max-width: 290px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.vb_footer__menu li a {
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.vb_footer__menu li a:hover {
  color: #ffd700;
}

.vb_footer__bottom {
  max-width: var(--max-content-width);
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--white);
}

.vbpg_responsibility-hero {
  background: var(--accent-gradient);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.vbpg_responsibility-hero__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_responsibility-hero__title {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  line-height: 1.2;
}

.vbpg_responsibility-content {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vbpg_responsibility-content__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_responsibility-content__item {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition-speed) ease;
}

.vbpg_responsibility-content__item:hover {
  transform: translateY(-6px);
}

.vbpg_responsibility-content__item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.vbpg_responsibility-content__item p {
  font-family: var(--text-font);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--black);
}

.vbpg_cookie-hero {
  background: var(--accent-gradient);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.vbpg_cookie-hero__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_cookie-hero__title {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  line-height: 1.2;
}

.vbpg_cookie-content {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vbpg_cookie-content__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_cookie-content__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  transition: transform var(--transition-speed) ease;
}

.vbpg_cookie-content__item:hover {
  transform: translateY(-6px);
  background: #f0f0f0;
}

.vbpg_cookie-content__item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.vbpg_cookie-content__item p {
  font-family: var(--text-font);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--black);
}

.vbpg_privacy-hero {
  background: var(--accent-gradient);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.vbpg_privacy-hero__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_privacy-hero__title {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  line-height: 1.2;
}

.vbpg_privacy-content {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vbpg_privacy-content__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_privacy-content__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  transition: transform var(--transition-speed) ease;
}

.vbpg_privacy-content__item:hover {
  transform: translateY(-6px);
  background: #f0f0f0;
}

.vbpg_privacy-content__item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.vbpg_privacy-content__item p {
  font-family: var(--text-font);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--black);
}

@media (max-width: 768px) {
  .vbpg_privacy-content__item p {
    font-size: 0.8rem;
  }
}

.vbpg_about-hero {
  background: var(--accent-gradient);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.vbpg_about-hero__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_about-hero__title {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.vbpg_about-hero__description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.vbpg_about-features {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vbpg_about-features__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vbpg_about-features__title {
  font-family: var(--heading-font);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--black);
}

.vbpg_about-features__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.vbpg_about-features__card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  width: calc(33% - 1.5rem);
  min-height: 260px;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.vbpg_about-features__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vbpg_about-features__card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.vbpg_about-features__card h4 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.vbpg_about-features__card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.vbpg_about-features__card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.vbpg_about-features__card li i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .vbpg_about-features__card {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .vbpg_about-hero__title {
    font-size: 2.2rem;
  }

  .vbpg_about-hero__description {
    font-size: 1rem;
  }

  .vbpg_about-features__cards {
    flex-direction: column;
    align-items: center;
  }

  .vbpg_about-features__card {
    width: 100%;
    max-width: 500px;
  }
}

.vbpg_contact-hero {
  background: var(--accent-gradient);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.vbpg_contact-hero__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_contact-hero__title {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.vbpg_contact-hero__description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.vbpg_contact-form {
  background: var(--white);
  color: var(--black);
  padding: 5rem 2rem;
}

.vbpg_contact-form__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.vbpg_contact-form__subtitle {
  font-family: var(--heading-font);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--black);
}

.vbpg_contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.vbpg_contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vbpg_contact-form__field label {
  font-weight: bold;
  color: var(--black);
}

.vbpg_contact-form__field input,
.vbpg_contact-form__field textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.vbpg_contact-form__field input:focus,
.vbpg_contact-form__field textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.vbpg_contact-form__error {
  font-size: 0.9rem;
  color: red;
  height: 1rem;
  display: block;
  min-height: 1rem;
}

.vbpg_contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vbpg_contact-form__checkbox input[type="checkbox"] {
  transform: scale(1.2);
}

.vbpg_contact-form__checkbox label {
  font-size: 1rem;
}

.vbpg_contact-form__checkbox a {
  color: var(--accent-color);
  text-decoration: underline;
}

.vbpg_contact-form__checkbox a:hover {
  color: #005fa3;
}

#vbpg_contact-form__submit {
  background: #ccc;
  color: var(--white);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  align-self: center;
  cursor: not-allowed;
  transition: all var(--transition-speed) ease;
}

#vbpg_contact-form__submit.active {
  background: var(--accent-color);
  cursor: pointer;
}

#vbpg_contact-form__submit.active:hover {
  background: #005fa3;
}

.vbpg_contact-form__success {
  max-width: 600px;
  margin: 3rem auto 0;
  background: rgba(0, 128, 0, 0.1);
  border-left: 4px solid green;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease forwards;
}

.vbpg_contact-form__success i {
  font-size: 2rem;
  color: green;
}

.vbpg_contact-form__success p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--black);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .vbpg_contact-hero__title {
    font-size: 2.2rem;
  }

  .vbpg_contact-hero__description {
    font-size: 1rem;
  }

  .vbpg_contact-form__form {
    width: 100%;
  }
}

.vb_age__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.vb_age__modal.vb_age__active {
  opacity: 1;
  visibility: visible;
}

.vb_age__content {
  background: var(--white);
  color: var(--black);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
}

.vb_age__title {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.vb_age__description {
  font-family: var(--text-font);
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.vb_age__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.vb_age__accept,
.vb_age__decline {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background var(--transition-speed);
}

.vb_age__accept {
  background: var(--accent-color);
  color: var(--white);
}

.vb_age__accept:hover {
  background: #005fa3;
}

.vb_age__decline {
  background: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--white);
}

.vb_age__decline:hover {
  background: #005fa3;
  color: var(--black);
}

.vb_cookies__modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  flex-wrap: wrap;
  gap: 1rem;
}

.vb_cookies__modal.active {
  opacity: 1;
  visibility: visible;
}

.vb_cookies__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
}

.vb_cookies__text {
  font-size: 1rem;
  font-family: var(--text-font);
}

.vb_cookies__link {
  color: var(--accent-color);
  text-decoration: underline;
  font-family: var(--text-font);
  transition: color var(--transition-speed);
}

.vb_cookies__link:hover {
  color: #005fa3;
}

.vb_cookies__accept {
  padding: 0.5rem 1.2rem;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.vb_cookies__accept:hover {
  background: #005fa3;
}

.vb_top__button {
  position: fixed;
  bottom: 170px;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.vb_top__button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .vb_age__content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }

  .vb_age__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .vb_cookies__inner {
    flex-direction: column;
  }

  .vb_cookies__accept {
    width: 100%;
    text-align: center;
  }
}