/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.bodyStyle {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

/* ===== Header ===== */
.mainHeader {
  background: linear-gradient(135deg, #3f87a6, #ebf8e1, #f69d3c);
  padding: 20px;
  color: #222;
  text-align: center;
  border-bottom: 4px solid #3f87a6;
}

.mainHeader h1 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* ===== Navigation ===== */
.topnav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #3f87a6;
  padding: 12px 0;
  border-radius: 0 0 10px 10px;
}

.topnav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s ease;
}

.topnav a:hover {
  color: #fcd34d;
  transform: scale(1.05);
}

/* ===== Main Content ===== */
#mainContent {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

#mainContent p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.cursiveText {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
}

/* ===== About Us ===== */
#aboutUs {
  background: #fff;
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

#aboutUs h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

#aboutUs img {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* ===== Contact Us ===== */
#contactUs {
  background: #eef6f9;
  max-width: 900px;
  margin: 40px auto;
  padding: 25px;
  border-radius: 10px;
}

#contactUs h2 {
  margin-bottom: 10px;
}

#contactUs img {
  margin: 10px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#contactUs p, 
#contactUs div {
  font-size: 1rem;
  margin-top: 5px;
}

/* ===== Footer ===== */
#Copyright {
  margin: 30px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}
