/* style/index-w88vt-security-guarantee.css */
.page-index-w88vt-security-guarantee {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

.page-index-w88vt-security-guarantee__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-w88vt-security-guarantee__hero {
  background: linear-gradient(135deg, #0A2342 0%, #0A2342 70%, #FFD700 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-index-w88vt-security-guarantee__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
  padding: 20px;
}

.page-index-w88vt-security-guarantee__hero h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-w88vt-security-guarantee__hero p {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-w88vt-security-guarantee__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
  overflow: hidden;
}

.page-index-w88vt-security-guarantee__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%);
  transform: scale(1.1);
}

.page-index-w88vt-security-guarantee__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-w88vt-security-guarantee__section:last-of-type {
  border-bottom: none;
}

.page-index-w88vt-security-guarantee__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-w88vt-security-guarantee__section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-w88vt-security-guarantee__section p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-index-w88vt-security-guarantee__section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-w88vt-security-guarantee__section ul li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.05em;
}

.page-index-w88vt-security-guarantee__section ul li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-w88vt-security-guarantee__content-block,
.page-index-w88vt-security-guarantee__image-block {
  flex: 1;
  padding: 20px;
}

.page-index-w88vt-security-guarantee__section .page-index-w88vt-security-guarantee__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-w88vt-security-guarantee__container--reversed {
  flex-direction: row-reverse;
}

.page-index-w88vt-security-guarantee__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;
}

.page-index-w88vt-security-guarantee__image-block img:hover {
  transform: translateY(-5px);
}

.page-index-w88vt-security-guarantee__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-index-w88vt-security-guarantee__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue text */
}

.page-index-w88vt-security-guarantee__btn--primary:hover {
  background-color: #E0B700;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-w88vt-security-guarantee__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-w88vt-security-guarantee__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342; /* Dark blue text */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-w88vt-security-guarantee__cta-banner {
  background-color: #FFD700;
  color: #0A2342;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-w88vt-security-guarantee__cta-banner h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2342;
}

.page-index-w88vt-security-guarantee__cta-banner p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
}

.page-index-w88vt-security-guarantee__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-w88vt-security-guarantee__cta-banner .page-index-w88vt-security-guarantee__btn--primary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
}

.page-index-w88vt-security-guarantee__cta-banner .page-index-w88vt-security-guarantee__btn--primary:hover {
  background-color: #0A2342;
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

.page-index-w88vt-security-guarantee__cta-banner .page-index-w88vt-security-guarantee__btn--secondary {
  background-color: #FFFFFF;
  color: #0A2342;
  border: 2px solid #FFFFFF;
}

.page-index-w88vt-security-guarantee__cta-banner .page-index-w88vt-security-guarantee__btn--secondary:hover {
  background-color: #E0E0E0;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-w88vt-security-guarantee__section .page-index-w88vt-security-guarantee__container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-w88vt-security-guarantee__container--reversed {
    flex-direction: column;
  }

  .page-index-w88vt-security-guarantee__hero h1 {
    font-size: 2.8em;
  }

  .page-index-w88vt-security-guarantee__section h2 {
    font-size: 2em;
  }
  
  .page-index-w88vt-security-guarantee__hero-content,
  .page-index-w88vt-security-guarantee__image-block {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-w88vt-security-guarantee__hero {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-index-w88vt-security-guarantee__hero h1 {
    font-size: 2.2em;
  }
  .page-index-w88vt-security-guarantee__hero p {
    font-size: 1em;
  }
  .page-index-w88vt-security-guarantee__section {
    padding: 40px 0;
  }
  .page-index-w88vt-security-guarantee__section h2 {
    font-size: 1.8em;
  }
  .page-index-w88vt-security-guarantee__cta-banner h2 {
    font-size: 2em;
  }
  .page-index-w88vt-security-guarantee__cta-banner p {
    font-size: 1em;
  }
  .page-index-w88vt-security-guarantee__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-w88vt-security-guarantee__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-w88vt-security-guarantee__hero h1 {
    font-size: 1.8em;
  }
  .page-index-w88vt-security-guarantee__section h2 {
    font-size: 1.5em;
  }
  .page-index-w88vt-security-guarantee__cta-banner h2 {
    font-size: 1.6em;
  }
}