.page-contact {
  font-family: Arial, sans-serif;
  color: #000000; /* Dark text on light background */
  background-color: #FFFFFF; /* Page background */
}

.page-contact__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Hero background, contrasting with text */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

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

.page-contact__btn--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-contact__btn--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-contact__btn--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-contact__btn--secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-contact__btn--submit {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__btn--submit:hover {
  background-color: #e0a53a;
}

.page-contact__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-contact__btn--small:hover {
  background-color: #e0a53a;
}

.page-contact__btn--tertiary {
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-contact__btn--tertiary:hover {
  background-color: #1a1a1a;
  border-color: #e0a53a;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-contact__channels-section, .page-contact__form-section, .page-contact__responsible-gambling-section, .page-contact__partnership-section, .page-contact__social-media-section, .page-contact__security-section, .page-contact__vip-support-section {
  padding: 80px 0;
}

.page-contact__channels-section {
  background-color: #f9f9f9;
}

.page-contact__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__channel-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__channel-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input, .page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1em;
  color: #333333;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #FCBC45;
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__responsible-gambling-image, .page-contact__partnership-image, .page-contact__security-image, .page-contact__vip-support-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-contact__social-media-section {
  background-color: #f9f9f9;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-contact__social-link img {
  
  
  transition: transform 0.3s ease;
  object-fit: contain;
}

.page-contact__social-link:hover img {
  transform: translateY(-5px);
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 60px;
  }
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
  }
  .page-contact__channel-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__channels-section, .page-contact__form-section, .page-contact__responsible-gambling-section, .page-contact__partnership-section, .page-contact__social-media-section, .page-contact__security-section, .page-contact__vip-support-section {
    padding: 60px 0;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__social-link img {
    
    
  }
  .page-contact__container img {
    max-width: 100%;
    height: auto;
  }
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-contact__social-link img {
    
    
  }
}