:root {
  --primary-color: #003366; /* Deep Blue */
  --secondary-color: #FFCC00; /* Gold */
  --text-color: #333333; /* Dark Grey for light backgrounds */
  --light-bg: #f4f4f4; /* Body background */
  --white: #ffffff;
  --dark-text: #000000;
  --border-color: #e0e0e0;
  --box-shadow-light: 0 4px 15px rgba(0,0,0,0.05);
  --box-shadow-medium: 0 2px 10px rgba(0,0,0,0.1);
  --transition-speed: 0.3s ease;
}

/* --- Base Page Styles (scoped to .page-contact) --- */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: var(--text-color); /* Default text color for light body background */
  line-height: 1.6;
  background-color: var(--light-bg); /* Ensure consistency with body background */
}

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