.page-index-security-guarantees {
  padding-top: var(--header-offset, 120px);
  font-family: Arial, sans-serif;
  color: #333333; /* Deep text color for light body background */
  line-height: 1.6;
}

.page-index-security-guarantees__hero-section {
  background: linear-gradient(135deg, #0047AB, #002880);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-security-guarantees__hero-content {
  max-width: 900px;
}

.page-index-security-guarantees__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantees__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-security-guarantees__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-security-guarantees__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-index-security-guarantees__button--primary {
  background-color: #FFD700;
  color: #0047AB;
  border: 2px solid #FFD700;
}

.page-index-security-guarantees__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-security-guarantees__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-security-guarantees__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-index-security-guarantees__button--tertiary {
  background-color: #0047AB;
  color: #ffffff;
  border: 2px solid #0047AB;
  margin-top: 20px;
}

.page-index-security-guarantees__button--tertiary:hover {
  background-color: #003a8a;
  transform: translateY(-3px);
}

.page-index-security-guarantees__button--link {
  color: #0047AB;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
  font-size: 1em;
}

.page-index-security-guarantees__button--link:hover {
  color: #FFD700;
  text-decoration: none;
  transform: none;
}

.page-index-security-guarantees__hero-image {
  max-width: 100%;
  overflow: hidden;
}

.page-index-security-guarantees__hero-image img {
  width: 1200px;
  height: 675px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-security-guarantees__features-section,
.page-index-security-guarantees__responsible-gaming-section,
.page-index-security-guarantees__support-section,
.page-index-security-guarantees__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-security-guarantees__section-title {
  font-size: 2.5em;
  color: #0047AB;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-security-guarantees__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-security-guarantees__section-intro,
.page-index-security-guarantees__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-security-guarantees__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-security-guarantees__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-security-guarantees__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index-security-guarantees__feature-icon {
  width: 400px;
  height: 300px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

.page-index-security-guarantees__card-title {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-index-security-guarantees__card-description {
  font-size: 1em;
  color: #666666;
}

.page-index-security-guarantees__responsible-gaming-section {
  background-color: #eef4fb;
  padding: 60px 20px;
}

.page-index-security-guarantees__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index-security-guarantees__text-content {
  flex: 1;
  min-width: 300px;
}

.page-index-security-guarantees__image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-security-guarantees__responsive-image {
  width: 600px;
  height: 450px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

.page-index-security-guarantees__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-index-security-guarantees__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #444444;
}

.page-index-security-guarantees__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #0047AB;
  font-weight: bold;
}

.page-index-security-guarantees__support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-security-guarantees__support-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-security-guarantees__support-item-title {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-index-security-guarantees__support-item-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-index-security-guarantees__cta-section {
  text-align: center;
  background-color: #0047AB;
  color: #ffffff;
  padding: 60px 20px;
}

.page-index-security-guarantees__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantees__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-security-guarantees__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-security-guarantees__hero-title {
    font-size: 2.8em;
  }
  .page-index-security-guarantees__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantees__hero-section {
    padding: 60px 15px;
  }
  .page-index-security-guarantees__hero-title {
    font-size: 2.2em;
  }
  .page-index-security-guarantees__hero-description {
    font-size: 1em;
  }
  .page-index-security-guarantees__hero-actions,
  .page-index-security-guarantees__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-security-guarantees__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-index-security-guarantees__features-grid,
  .page-index-security-guarantees__support-grid {
    grid-template-columns: 1fr;
  }
  .page-index-security-guarantees__section-title {
    font-size: 1.8em;
  }
  .page-index-security-guarantees__section-intro,
  .page-index-security-guarantees__section-description {
    font-size: 0.95em;
  }
  .page-index-security-guarantees__cta-title {
    font-size: 2.2em;
  }
  .page-index-security-guarantees__content-wrapper {
    flex-direction: column;
  }
  .page-index-security-guarantees__text-content,
  .page-index-security-guarantees__image-content {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-security-guarantees__hero-title {
    font-size: 1.8em;
  }
  .page-index-security-guarantees__section-title {
    font-size: 1.5em;
  }
  .page-index-security-guarantees__cta-title {
    font-size: 1.8em;
  }
  .page-index-security-guarantees__feature-icon,
  .page-index-security-guarantees__responsive-image {
    min-width: 200px;
    min-height: 200px;
  }
}