/* clearheart.css
last edited 2026-05-20 */

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #628DBB;
  background: #F9F8F5;
}
header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 46px;
  color: #628DBB
}
.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0b4388;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
nav a {
  margin-left: 45px;
  text-decoration: none;
  color: #06357a;
  font-family: Arial, sans-serif;
  letter-spacing: 3px;
  font-size: 16px;
}
nav a.active {
  border-bottom: 2px solid #2f72d6;
  padding-bottom: 10px;
}
main {
  text-align: center;
  padding: 25px 25px 25px;
  position: relative;
  overflow: hidden;
}
h1 {
  font-size: 36px;
  font-weight: normal;
  margin: 0 0 25px;
}
.heart-divider {
  color: #1e73e8;
  font-size: 26px;
  margin-bottom: 38px;
}
.mission {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.3;
  text-align:left;
}
.mission p {
  margin-bottom: 24px;
}
.button {
  display: inline-block;
  margin-top: 10px;
  background: #628DBB;
  color: white;
  text-decoration: none;
  padding: 20px 45px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  letter-spacing: 4px;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.subtext {
  font-family: Georgia, "Times New Roman", serif;
  color: #628DBB;
  font-size: 16px;
  margin-top: 25px;
}
footer {
  background-color: #628DBB;
  color: white;
  padding: 5px 40px 5px;
  font-family: Arial, sans-serif;
  justify-items: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  max-width: 1000px;
  margin-top: 0px;
  text-align: left;
  line-height: 1.5;
}
.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  margin-bottom: 0px;
}
.footer-text p {
  margin-top: 2px;
  line-height: 1.5;
}
footer h3 {
  letter-spacing: 4px;
  font-size: 16px;
  font-weight: normal;
  padding: 0px;
  margin-top:5px;
  margin-bottom: 0px;
}
footer p, footer a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,0.35);
  max-width: 1000px;
  margin: 5px auto 0;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 15px; 
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 25px;
  }
  nav {
    margin-top: 20px;
  }
  nav a {
    margin: 0 12px;
    font-size: 13px;
  }
  .brand {
    font-size: 34px;
  }
  h1 {
    font-size: 50px;
  }
  .mission {
    font-size: 21px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}