.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color);
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-contact__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #C91F17;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as per rule */
  padding-bottom: 60px;
  background-color: #B71C1C;
  overflow: hidden;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-contact__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #FFF5E1;
  padding: 40px 15px;
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFF5E1;
}

.page-contact__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact__btn-small,
.page-contact__social-btn,
.page-contact__form-submit-btn,
.page-contact__btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-contact__btn-secondary {
  background: #ffffff;
  color: #C91F17;
  border: 2px solid #C91F17;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__btn-secondary:hover {
  background: #f0f0f0;
  color: #E53935;
  border-color: #E53935;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Channels Section */
.page-contact__contact-channels-section,
.page-contact__dedicated-support-section,
.page-contact__why-us-section,
.page-contact__responsible-gaming-section,
.page-contact__faq-section {
  padding: 80px 0;
}

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

.page-contact__channel-card,
.page-contact__support-card {
  background: #D32F2F;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF5E1;
}

.page-contact__channel-card:hover,
.page-contact__support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__channel-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
}

.page-contact__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F4D34D;
}

.page-contact__channel-card p,
.page-contact__support-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFF5E1;
}