body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

.btn-primary {
  background-color: #1e73be;
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #155a91;
}

.intro-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.text-justify {
  text-align: justify;
}

.intro-photo {
  flex: 0 0 180px; /* fixed width */
}

.intro-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 0; /* square image */
  display: block;
}

.intro-text {
  flex: 1 1 300px;
}

iframe {
  border: none;
}



/* Navbar overrides */
.navbar {
  background-color: #1e73be !important;
}

.navbar a.nav-link,
.navbar-brand {
  color: white !important;
}

.navbar a.nav-link:hover {
  color: #cce0f5 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-photo {
    margin-bottom: 1rem;
  }
}

.contact-form {
  max-width: 500px;
  margin-top: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #1e73be;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #155fa5;
}