html, body {
  overflow-x: hidden;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #1e293b;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  max-width: 100vw;
}
.font-sans { font-family: 'Inter', Arial, sans-serif; }
.font-heading { font-family: 'Playfair Display', serif; }
.navbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #1d4ed8;
  color: #fff;
  box-shadow: 0 2px 8px #0001;
  padding: 1rem 1rem 1rem 1rem;
  align-items: center;
  margin-bottom: 0;
  border-bottom: none;
}
.navbar-brand {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  color: inherit !important;
  cursor: default !important;
}
.navbar-brand:visited {
  color: inherit !important;
}
.navbar-brand:hover,
.navbar-brand:active,
.navbar-brand:focus {
  color: inherit !important;
  text-decoration: none !important;
  cursor: default !important;
}
.navbar-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.navbar-menu a.active, .navbar-menu a:hover {
  color: #fbbf24;
  border-bottom: 2px solid #fbbf24;
}
.about-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 1rem 0 1rem 0;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  margin-top: 0;
  border-top: none;
}
.about-hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 4px 16px #0002;
  object-fit: cover;
}
.about-content {
  padding: 2rem 1rem 3rem 1rem;
  background: #fff;
}
.about-container {
  max-width: 700px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 700;
}
.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1d4ed8;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.text-blue-900 { color: #1e293b; }
.text-blue-800 { color: #1e40af; }
.text-blue-700 { color: #1d4ed8; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
blockquote {
  background: #eff6ff;
  border-left: 4px solid #1d4ed8;
  color: #1e293b;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.about-green {
  background: #dcfce7;
  border-left: 4px solid #22c55e;
  color: #166534;
}
.about-yellow {
  background: #fef9c3;
  border-left: 4px solid #fbbf24;
  color: #92400e;
}
ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #1e293b;
  font-size: 1rem;
}
hr {
  border: none;
  border-top: 1px solid #dbeafe;
  margin: 2rem 0;
}
.about-motivation {
  margin-top: 2rem;
  text-align: center;
  color: #1e40af;
  font-size: 1.2rem;
  font-weight: 600;
}
.footer {
  background: #eff6ff;
  color: #1e40af;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 1.1rem;
  border-top: 1px solid #dbeafe;
  min-height: 70px;
  position: relative;
}
.policy-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.2rem;
  justify-content: end;
  align-items: end;
  position: absolute;
  right: 2.2rem;
  bottom: 1.2rem;
  min-width: 220px;
  max-width: 320px;
  width: fit-content;
  background: none;
}
.policy-link-item {
  color: #1d4ed8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.policy-link-item:hover {
  color: #15803d;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .policy-links-grid {
    position: static;
    justify-content: center;
    align-items: center;
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin-top: 0.7rem;
    gap: 0.2rem 0.7rem;
    grid-template-columns: 1fr 1fr;
  }
  .policy-link-item {
    width: 100%;
    min-width: unset;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .navbar {
    padding: 1rem 0.5rem;
  }
  .about-content {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
  .about-content h2 {
    font-size: 1.3rem;
  }
  .about-content h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 900px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-brand {
    margin-right: auto;
  }
  .navbar-menu {
    margin-left: auto;
  }
} 
.navbar-brand,
.navbar-brand:visited,
.navbar-brand:active,
.navbar-brand:focus {
  color: inherit !important;
  text-decoration: none !important;
  cursor: default !important;
}