/*
blue-themed version
*/
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #e0e1dd; 
  color: #1b263b;
  line-height: 1.6;
}


header {
  background-color: #0d1b2a; 
  color: #e0e1dd; 
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.2em;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #e0e1dd; 
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #e0afa0; 
}


.container {
  max-width: 900px;
  margin: 40px auto;
  background: #778da9; 
  color: #e0e1dd;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


h2 {
  color: #415a77; 
  margin-top: 20px
}


p {
  font-size: 1.05em;
  text-align: justify;
  color: #e0e1dd;
}

.highlights {
  background-color: #778da9; 
  padding: 40px;
  margin-top: 30px;
  border-radius: 8px;
  color: #e0e1dd;
  text-align: center; /* centers heading and content block */
}
/* .highlights {
max-width: 900px;
  margin: 40px auto;
  background: #778da9; 
  color: #e0e1dd;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} */

/* .highlights h2 {
  color: #0d1b2a; 
} */

/* .highlights ul {
  list-style-type: none;
  padding: 0;
} */

.highlights ul {
  list-style-type: none;
  padding: 0;
  display: inline-block; /* make ul shrink to content */
  text-align: left;     /* keep bullet points readable */
}

.highlights ul li {
  margin-bottom: 12px;
  padding-left: 1.2em;
  position: relative;
}

.highlights ul li::before {
  content: "•";
  color: #e0e1dd; 
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* footer {
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background-color: #0d1b2a; 
  color: #e0e1dd;
  font-size: 0.9em;
} */


.contact-icons {
  margin-top: 20px;
}

.contact-icons a {
  margin: 0 10px;
  font-size: 28px;
  color: #e0e1dd; 
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #e0afa0; 
}

a {
  color: inherit;           
  text-decoration: underline; 
  transition: color 0.3s ease;
}

html, body {
  height: 100%;       /* make the page full height */
  margin: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;  /* full viewport height */
}

.container, .highlights {
  flex: 1;            /* make content expand to fill space if needed */
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #0d1b2a;
  color: #e0e1dd;
  font-size: 0.9em;
}




