body {
  margin: 0;
  font-family: 'Fira Sans', sans-serif;
  background: #f0f0f0;
}

/* Top Icons */
.verto-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0;
}

.verto-icon-block {
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.verto-icon-block:hover {
  transform: scale(1.05);
}

.verto-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.verto-icon-block p {
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

/* Promo Section */
.verto-promo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 32px;
  background: #fff;
}

/*.verto-promo__title {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 32px;
  line-height: 1.4;
  color: #1a1a1a;
}*/

.verto-promo-title {
  color: #808080;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
   margin-bottom: 15px;
}

.verto-promo-title h2{
 color: #808080;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
   margin-bottom: 15px;
}

.verto-promo-title .bb {
  color: #231f20;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
}
.verto-promo__intro {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.verto-promo__award-icon {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.verto-promo__intro p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-family: FiraSans;
  font-weight: Regular;
}

.verto-promo__highlight h2 {
  color: #808080;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
   margin-bottom: 15px;
}

.verto-promo__highlight .bb {
  color: #231f20;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
}

.verto-promo__highlight p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
  font-family: FiraSans;
  font-weight: Regular;
}

.verto-main-image {
  width: 100%;
  border-radius: 0px;
 /* box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
}


/* Gallery */
/* === Gallery Container === */
/* === Gallery Layout === */
/* === Page Background === */
body {
  background-color: #fff;
  margin: 0;
  font-family: sans-serif;
}

/* === Gallery Section === */
.verto-gallery {
  max-width: 1000px;
  margin: 0px auto;
  padding: 0 32px;
}

/* Main Display Box */
.verto-gallery__main {
  text-align: center;
  margin-bottom: 24px;
}

.verto-gallery__main img,
.verto-gallery__main video {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
 /* box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
  transition: opacity 0.3s ease-in-out;
}

/* Thumbnails */
.verto-gallery__thumb-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.verto-gallery__thumb img {
  width: 255px;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
 /* box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
  cursor: pointer;
  transition: transform 0.3s ease;
}

.verto-gallery__thumb img:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .verto-gallery__main img,
  .verto-gallery__main video {
    max-width: 100%;
    padding: 0 16px;
  }

  .verto-gallery__thumb img {
    width: 120px;
    height: 80px;
  }
}