/* ABOUT PAGE STYLES */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #E6DAF8;
  padding: 10px 20px;
  border-bottom: 2px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  max-width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff6600;
}

/* Section Styling - Full Width */
.about-section,
.vision-mission,
.growth-track,
.about-pastor,
.our-beliefs {
  padding: 40px 50px;
  width: 100%;
  margin-bottom: 30px;
  background-color: #FDF6EC;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
  box-sizing: border-box;
}

h2, h3 {
  color: #b22222;
  margin-top: 0;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

footer a {
  color: #ffa500;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .logo img {
    height: 50px;
  }

  .about-section,
  .vision-mission,
  .growth-track,
  .about-pastor,
  .our-beliefs {
    padding: 30px 20px;
  }
}