
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  background-color: #F7F9FB;
  line-height: 1.6;
}

.hero {
  text-align: center;
  background-color: #F7F9FB;
  padding: 60px 20px;
}

.logo {
  max-width: 140px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
  color: #3A506B;
  margin: 10px 0;
}

.subhead {
  font-size: 1.25rem;
  color: #D98C9B;
  max-width: 750px;
  margin: 0 auto;
}

.origin-story {
  background-color: #e6edf7;
  padding: 10px 10px;
  text-align: center;
}

.origin-story h2 {
  font-size: 1.5rem;
  color: #3A506B;
  margin-bottom: 15px;
}

.origin-story p {
  max-width: 850px;
  margin: 0 auto 15px;
  font-size: 1.0rem;
  color: #333;
  line-height: 1.7;
}

.origin-story .symbol {
  font-size: 1.5rem;
  margin-right: 8px;
  color: #D98C9B;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.headshot {
  max-width: 280px;
  width: 100%;
  border-radius: 10px;
  flex-shrink: 0;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    margin-top: 20px;
  }
}

.about-text h2 {
  color: #D98C9B;
  margin-top: 0;
}

.services-boxes {
  background-color: #e6edf7;
  padding: 40px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.service-item {
  background-color: #F7F9FB;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 280px;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  color: #3A506B;
  margin-bottom: 12px;
}

.contact {
  text-align: center;
  padding: 0px 0px;
}

.contact h2 {
  color: #D98C9B;
}

.social-icons {
  position: absolute;
  top: 30px;
  right: 30px;
}

.social-icons img {
  width: 26px;
  height: 26px;
  fill: #0A66C2;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 1;
}

.contact-form {
  text-align: center;
  padding: 5px 5px;
  margin-top: 20px;
}

.contact-form h2 {
  color: #3A506B;
  margin-bottom: 10px;
}

.contact-form p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}

.contact-form input[type="email"] {
  padding: 12px;
  width: 280px;
  max-width: 90%;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #D98C9B;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c67687;
}
