@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orpheus+Pro:wght@400;700&display=swap');

body {
  font-family: 'Instrument Sans', sans-serif;
  background-color: #eaeaea;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background-color: #021A5B;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 300; 
  letter-spacing: 0.01rem;
  font-family: 'Orpheus Pro', serif;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: #ccc;
  margin-right: 1rem;
  text-decoration: none;
}

nav a.active,
nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero {
  background-color: #021A5B;
  color: white;
  padding: 3rem 1rem;
  text-align: left; /* changed from center to left */
}

.hero .container {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 4.5rem;                    /* more elegant size */
  font-weight: 300;                   /* lighter = less blocky */
  line-height: 1.2;                   /* good vertical breathing room */
  letter-spacing: -0.015rem;          /* slight tightening */
  font-family: 'Orpheus Pro', serif;
  margin: 0;
  color: white;
}

.hero h3 {
  font-size: 1.5rem;
  font-weight: normal;
  color: #ddd;
  margin-top: 1rem;
}

.page-header {
  background-color: #eaeaea; /* matches rest of the site */
  padding: 2rem 0;
  text-align: center;
}

.page-header h2 {
  font-family: 'Orpheus Pro', serif;
  font-size: 2rem;
  font-weight: 400; 
  line-height: 1.2;
  letter-spacing: -0.02rem;
  margin: 0;
}

.main-content h1 {
  font-family: 'Orpheus Pro', serif;
  font-size: 2rem; /* Adjust as needed */
  font-weight: 400;
  color: #021A5B;
  margin-bottom: 1rem;
}

.main-content {
  padding: 2rem 0;
  line-height: 1.6;
}

.main-content h3 {
  font-family: 'Orpheus Pro', serif;
  color: #021A5B;
  margin-top: 2rem;
}

.feature-box {
  background-color: #021A5B;
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 1.3rem;
  font-family: 'Orpheus Pro', serif;
  /* Remove margin to eliminate white gap */
  margin: 0;
}


footer {
  background-color: #021A5B;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: bold;
}

input, textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #021A5B;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #333;
}

.hidden {
  display: none;
}

.expertise-section {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #999;
  padding-bottom: 1rem;
}

.expertise-section h3 {
  min-width: 200px;
  font-family: 'Orpheus Pro', serif;
  font-size: 1.8rem; /* or 1.5rem if you want slightly smaller */
}
