/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Assuming body is light, default for page content */
}

/* Header offset */
.page-contact__hero-section {
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  position: relative;
  overflow: hidden;
}

/* Containers for content width */
.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Sections */
.page-contact__hero-section {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-contact__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(38, 169, 224, 0.8), rgba(38, 169, 224, 0.6));
    z-index: 1;
}

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

.page-contact__hero-title,
.page-contact__hero-description,
.page-contact__btn-primary {
    position: relative;
    z-index: 2;
}


.page-contact__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-contact__form-section,
.page-contact__faq-section,
.page-contact__why-contact-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-contact__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}