:root {
  --bingoplus-primary: #F2C14E; /* Main color */
  --bingoplus-secondary: #FFD36B; /* Auxiliary color / Glow */
  --bingoplus-card-bg: #111111; /* Card Background */
  --bingoplus-bg: #0A0A0A; /* Page Background */
  --bingoplus-text-main: #FFF6D6; /* Main Text Color */
  --bingoplus-border: #3A2A12; /* Border Color */
  --bingoplus-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --bingoplus-dark-text: #333333; /* For light backgrounds */
  --bingoplus-light-text: #ffffff; /* For dark backgrounds */
}

.page-contact {
  font-family: Arial, sans-serif;
  color: var(--bingoplus-text-main); /* Default text color for dark background */
  background-color: var(--bingoplus-bg); /* Page background */
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px; /* Adjusted top padding, not --header-offset */
  background-color: var(--bingoplus-bg);
  color: var(--bingoplus-text-main);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px; /* Space between content and image */
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--bingoplus-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow effect */
}

.page-contact__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--bingoplus-text-main);
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--bingoplus-button-gradient);
  color: var(--bingoplus-light-text); /* White text on button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-contact__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-contact__hero-image {
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-top: 30px; /* Space above image */
}

/* General Section Styling */
.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__info-section,
.page-contact__faq-section,
.page-contact__responsible-gaming-section {
  padding: 60px 0;
}

.page-contact__dark-bg {
  background-color: var(--bingoplus-bg);
  color: var(--bingoplus-text-main);
}

.page-contact__light-bg {
  background-color: #ffffff; /* Default light background */
  color: var(--bingoplus-dark-text); /* Dark text for light background */
}

.page-contact__dark-text {
  color: var(--bingoplus-dark-text); /* Explicitly set dark text for light sections */
}


.page-contact__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--bingoplus-primary);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-contact__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--bingoplus-text-main);
}

.page-contact__light-bg .page-contact__section-description {
  color: var(--bingoplus-dark-text);
}


/* Contact Methods */
.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}