/* style/support.css */

.page-support {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  line-height: 1.6;
  background-color: #0A192F; /* Main background color */
}

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

/* Hero Section */
.page-support__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-support__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

/* General Section Styling */
.page-support__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-support__section:nth-of-type(even) {
  background-color: #1A2B47; /* Slightly lighter dark blue for alternating sections */
}

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-support__section-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-support__faq-item {
  background-color: #0F2038;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
}

/* Technical Support Section */
.page-support__tech-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

.page-support__tech-list li {
  background-color: #0F2038;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-support__icon {
  color: #FFD700;
  margin-right: 15px;
  font-size: 1.5em;
}

/* Responsible Gambling Section */
.page-support__responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-support__responsible-item {
  background-color: #0F2038;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-support__responsible-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__responsible-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-support__responsible-text-bottom {
  margin-top: 40px;
  font-size: 1.1em;
  color: #B0B0B0;
}

.page-support__responsible-text-bottom a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-support__responsible-text-bottom a:hover {
  text-decoration: underline;
}

/* Contact Section */
.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-support__contact-item {
  background-color: #0F2038;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-support__contact-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__contact-item p {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-support__link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__link:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Buttons */
.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: none;
}

.page-support__button--primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

/* Icons (Placeholder for Font Awesome or custom icons) */
.page-support__icon--check::before {
  content: '✓'; /* Placeholder for a checkmark icon */
}
.page-support__icon--email::before {
  content: '✉'; /* Placeholder for an email icon */
}
.page-support__icon--chat::before {
  content: '💬'; /* Placeholder for a chat icon */
}
.page-support__icon--phone::before {
  content: '📞'; /* Placeholder for a phone icon */
}

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

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__faq-grid,
  .page-support__responsible-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support__hero,
  .page-support__section {
    padding: 40px 0;
  }

  .page-support__tech-list li {
    padding: 12px 20px;
    font-size: 1em;
  }
}

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

  .page-support__hero-description,
  .page-support__section-subtitle {
    font-size: 0.95em;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-support__faq-question,
  .page-support__responsible-heading {
    font-size: 1.2em;
  }
}