/* style/gambling-reviews-customer-support.css */
.page-gambling-reviews-customer-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-gambling-reviews-customer-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gambling-reviews-customer-support__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A2E4E 100%); /* Gradient background */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles */
  position: relative;
  overflow: hidden;
}

.page-gambling-reviews-customer-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-reviews-customer-support__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-gambling-reviews-customer-support__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

.page-gambling-reviews-customer-support__intro-section,
.page-gambling-reviews-customer-support__features-section,
.page-gambling-reviews-customer-support__comparison-section,
.page-gambling-reviews-customer-support__tips-section,
.page-gambling-reviews-customer-support__cta-section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-gambling-reviews-customer-support__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-gambling-reviews-customer-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-gambling-reviews-customer-support__features-section {
  background-color: #1A2E4E; /* Slightly lighter dark blue for contrast */
  padding: 80px 0;
}

.page-gambling-reviews-customer-support__feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.page-gambling-reviews-customer-support__feature-item:last-child {
  margin-bottom: 0;
}

.page-gambling-reviews-customer-support__feature-item--reverse {
  flex-direction: row-reverse;
}

.page-gambling-reviews-customer-support__feature-content {
  flex: 1;
}

.page-gambling-reviews-customer-support__feature-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gambling-reviews-customer-support__feature-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-gambling-reviews-customer-support__feature-content ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gambling-reviews-customer-support__feature-content li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-gambling-reviews-customer-support__feature-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-gambling-reviews-customer-support__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-reviews-customer-support__comparison-section p,
.page-gambling-reviews-customer-support__tips-section p {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-gambling-reviews-customer-support__tip-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-gambling-reviews-customer-support__tip-list li {
  background-color: #0A192F;
  border: 1px solid #FFD700;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #FFD700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-reviews-customer-support__tip-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-reviews-customer-support__cta-section {
  text-align: center;
  background-color: #0A192F;
  padding: 80px 0;
}

.page-gambling-reviews-customer-support__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gambling-reviews-customer-support__cta-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gambling-reviews-customer-support__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-reviews-customer-support__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-reviews-customer-support__hero-title {
    font-size: 2.8em;
  }

  .page-gambling-reviews-customer-support__hero-subtitle {
    font-size: 1.2em;
  }

  .page-gambling-reviews-customer-support__section-title {
    font-size: 2.2em;
  }

  .page-gambling-reviews-customer-support__feature-item {
    flex-direction: column;
    text-align: center;
  }

  .page-gambling-reviews-customer-support__feature-item--reverse {
    flex-direction: column;
  }

  .page-gambling-reviews-customer-support__feature-image-wrapper {
    margin-top: 30px;
  }

  .page-gambling-reviews-customer-support__feature-title {
    font-size: 1.8em;
  }

  .page-gambling-reviews-customer-support__cta-title {
    font-size: 2.5em;
  }

  .page-gambling-reviews-customer-support__cta-description {
    font-size: 1.1em;
  }

  .page-gambling-reviews-customer-support__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-gambling-reviews-customer-support__hero-section,
  .page-gambling-reviews-customer-support__intro-section,
  .page-gambling-reviews-customer-support__features-section,
  .page-gambling-reviews-customer-support__comparison-section,
  .page-gambling-reviews-customer-support__tips-section,
  .page-gambling-reviews-customer-support__cta-section {
    padding: 40px 0;
  }

  .page-gambling-reviews-customer-support__hero-title {
    font-size: 2.2em;
  }

  .page-gambling-reviews-customer-support__hero-subtitle {
    font-size: 1em;
  }

  .page-gambling-reviews-customer-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gambling-reviews-customer-support__feature-item {
    margin-bottom: 50px;
  }

  .page-gambling-reviews-customer-support__feature-title {
    font-size: 1.5em;
  }

  .page-gambling-reviews-customer-support__feature-content p,
  .page-gambling-reviews-customer-support__feature-content li {
    font-size: 0.95em;
  }

  .page-gambling-reviews-customer-support__cta-title {
    font-size: 2em;
  }

  .page-gambling-reviews-customer-support__cta-description {
    font-size: 1em;
  }

  .page-gambling-reviews-customer-support__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}