/* style/index-debet-social-responsibility.css */
.page-index-debet-social-responsibility {
  font-family: 'Arial', sans-serif;
  color: #0A2342; /* Main text color, dark blue */
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for overall page */
}

.page-index-debet-social-responsibility__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-debet-social-responsibility__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5D 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-debet-social-responsibility__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:hero_banner_social_responsibility]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 1;
}

.page-index-debet-social-responsibility__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  color: #FFD700; /* Gold for main title */
}

.page-index-debet-social-responsibility__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  color: #e0e0e0; /* Light grey for subtitle */
}

.page-index-debet-social-responsibility__hero-image {
  display: none; /* Background image is used in ::before, hide the img tag */
}

.page-index-debet-social-responsibility__section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-index-debet-social-responsibility__section--responsible-gaming {
  background-color: #f0f4f8; /* Slightly lighter blue-grey background */
}

.page-index-debet-social-responsibility__section--transparency {
  background-color: #ffffff;
}

.page-index-debet-social-responsibility__section--community {
  background-color: #f0f4f8;
}

.page-index-debet-social-responsibility__section--future-vision {
  background-color: #ffffff;
}

.page-index-debet-social-responsibility__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-debet-social-responsibility__subsection-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  display: inline-block;
}

.page-index-debet-social-responsibility__text {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-index-debet-social-responsibility__link-inline {
  color: #0A2342;
  text-decoration: underline;
  font-weight: bold;
}

.page-index-debet-social-responsibility__link-inline:hover {
  color: #FFD700;
  text-decoration: none;
}

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

.page-index-debet-social-responsibility__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #FFD700;
}

.page-index-debet-social-responsibility__feature-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-index-debet-social-responsibility__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-debet-social-responsibility__image-inline {
  display: block;
  margin: 30px auto;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-debet-social-responsibility__cta-section {
  background-color: #0A2342; /* Dark blue background */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
}

.page-index-debet-social-responsibility__cta-content {
  max-width: 900px;
}

.page-index-debet-social-responsibility__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for CTA title */
  font-weight: bold;
}

.page-index-debet-social-responsibility__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-debet-social-responsibility__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-debet-social-responsibility__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-index-debet-social-responsibility__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text */
}

.page-index-debet-social-responsibility__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-index-debet-social-responsibility__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-index-debet-social-responsibility__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-index-debet-social-responsibility .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-debet-social-responsibility__hero-title {
    font-size: 2.5em;
  }

  .page-index-debet-social-responsibility__hero-subtitle {
    font-size: 1em;
  }

  .page-index-debet-social-responsibility__section-title {
    font-size: 2em;
  }

  .page-index-debet-social-responsibility__subsection-title {
    font-size: 1.5em;
  }

  .page-index-debet-social-responsibility__text {
    font-size: 1em;
  }

  .page-index-debet-social-responsibility__grid {
    grid-template-columns: 1fr;
  }

  .page-index-debet-social-responsibility__cta-title {
    font-size: 2em;
  }

  .page-index-debet-social-responsibility__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-debet-social-responsibility__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-index-debet-social-responsibility__hero-title {
    font-size: 2em;
  }

  .page-index-debet-social-responsibility__section-title {
    font-size: 1.8em;
  }

  .page-index-debet-social-responsibility__subsection-title {
    font-size: 1.3em;
  }

  .page-index-debet-social-responsibility__hero-section {
    padding: 80px 0 60px;
  }

  .page-index-debet-social-responsibility__section {
    padding: 50px 0;
  }
}