/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 30px;
  background: #003366;
  color: white;
}

h1 {
  margin-bottom: 10px;
}
/* General Section Styling */
section {
  padding: 40px;
  margin: 30px auto;
  max-width: 900px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1e3c72;
  text-align: center;
}

section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

section ul {
  margin: 15px 0;
  padding-left: 20px;
}

section ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}

/* Know More Button Styling */
.know-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #1e3c72, #2a5298);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.know-more-btn:hover {
  background: linear-gradient(45deg, #2a5298, #1e3c72);
  transform: scale(1.05);
}


/* Extra Hidden Content */
.extra-content {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #f0f8ff;
  border-left: 4px solid #003366;
  border-radius: 5px;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  background: #003366;
  color: white;
}
