/* style/contact.css */

/* Custom properties for colors from the prompt */
:root {
  --primary-color: #26A9E0; /* Main brand color */
  --secondary-color: #FFFFFF; /* Auxiliary color, also body background */
  --login-color: #EA7C07;
  --dark-text-color: #333333; /* Standard dark text for light backgrounds */
  --light-text-color: #ffffff; /* Standard light text for dark backgrounds */
}

/* Base styles for the contact page content */
.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-text-color); /* Default text color for light body background */
  background-color: var(--secondary-color); /* Body background is light */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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