body {
  font-family: Arial, sans-serif;
  background: #faf6f0;
  margin: 0;
  padding: 0;
  color: #442c1e;
  font-size: 1.5em; /* Increased base text size */
}

header {
  background: #a31c1c;
  color: #fff;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}

.navbar h1 {
  margin: 0;
  font-size: 3rem; /* Larger header text */
  letter-spacing: 2px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar li {
  margin-left: 2.5rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem; /* Larger link text */
  transition: color 0.2s;
}

.navbar a:hover,
.contact-section a:hover {
  color: #132d5d; /* Dark blue on hover */
}

.main-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(68, 44, 30, 0.3);
}

.about-section {
  padding: 2.5rem;
  max-width: 1000px;
  margin: 2.5rem auto;
  background: #fff2e6;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(68, 44, 30, 0.1);
}

.about-columns {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}

.about-columns p {
  flex: 1;
  margin: 0;
  font-size: 1.6rem; /* Bigger paragraph text */
  line-height: 1.9;
  background: #f9e2d2;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(68, 44, 30, 0.12);
}

.contact-section {
  background: #fbeee0;
  padding: 2.5rem;
  max-width: 1000px;
  margin: 2.5rem auto;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(68, 44, 30, 0.10);
}

.contact-section h2 {
  margin-top: 0;
  font-size: 2.2rem;
}

.contact-section address {
  font-style: normal;
  font-size: 1.55rem; /* Larger contact text */
  margin-top: 0.5rem;
}

.contact-section a {
  color: #a31c1c;
  text-decoration: none;
  font-weight: bold;
  margin-top: 0.25rem;
  font-size: 1.55rem;
  display: inline-block;
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .about-section,
  .contact-section {
    padding: 1rem;
    max-width: 100%;
  }

  .about-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .about-columns p {
    font-size: 1.2rem;
  }
  .navbar h1, .navbar a {
    font-size: 1.2rem;
  }
}
