<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ===============================
   Font Imports
================================== */
@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Montserrat:wght@500;700&family=Roboto&display=swap');

/* ===============================
   Root Theme Variables
================================== */
:root {
  --bg-dark: #163948;
  --tile-bg: #1F4966;
  --nav-bg: #1E4B66;
  --text-color: #ACB99F;
  --heading-color: #C9BB8B;
  --hover-bg: #284e60;
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-nav: 'Bitter', serif;
}

/* ===============================
   Base + Reset
================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.contact-page {
  background-color: var(--bg-dark);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  padding-bottom: 5rem;
}

/* ===============================
   Navigation Bar
================================== */
.main-header {
  position: sticky;
  top: 0;
  background-color: var(--nav-bg);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  font-family: var(--font-nav);
}

.nav-list a {
  text-decoration: none;
  color: var(--heading-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background-color: var(--hover-bg);
}

/* ===============================
   Hero Section
================================== */
.contact-hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  background-color: var(--tile-bg);
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===============================
   Contact Main Wrapper
================================== */
.contact-wrapper {
  max-width: 1000px;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1.5rem;
  justify-content: space-between;
}

/* ===============================
   Contact Form Styles
================================== */

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #2f5872;
}

@media (max-width: 768px) {
  .contact-card {
    border-bottom: 1px solid #284e60;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}


.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
	font-weight: bold;
}

.contact-form {
  background-color: var(--tile-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  font-family: var(--font-heading);
  color: var(--heading-color);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background-color: #3C5E6E;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--heading-color);
}

/* ===============================
   Submit Button
================================== */
.button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-heading);
  background-color: var(--heading-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: var(--text-color);
  color: #000;
}

/* ===============================
   Contact Card Styles
================================== */


.contact-card {
  background-color: var(--tile-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
	font-weight: bold;
}

.contact-card a {
  font-size: 1.25rem;         /* Larger font size */
  font-weight: 500;           /* Slightly bolder text */
  color: var(--heading-color);
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--text-color);
}

.contact-card p {
  font-size: 1.1rem;          /* Make all lines in the card easier to read */
  margin-bottom: 1rem;
}

.contact-card p strong {
  display: inline-block;
  width: 100px;
}


.contact-form,
.contact-card {
  flex: 1 1 48%;
}


/* ===============================
   Responsive Design
================================== */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-card {
    width: 100%;
  }

  .contact-hero h1 {
    font-size: 2.3rem;
  }
}
</style>
<!-- end Simple Custom CSS and JS -->
