/* Core Reset */
body, h1, h2, h3, p, ul, ol, li, table {
  margin: 0;
  padding: 0;
  font-family: 'Merriweather', serif;
  color: #2c2c2c;
}

/* Body Styling */
body {
  background-color: #fff8f0;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  background-color: #FF9933; /* Saffron */
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Gold */
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  padding: 30px;
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.2);
}

/* Section Titles */
main h2 {
  color: #3F51B5; /* Indigo */
  margin-bottom: 10px;
  font-size: 1.8em;
}

/* Paragraphs */
main p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* Lists */
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: #FFD700; /* Gold */
  color: #2c2c2c;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #FF9933;
  color: white;
  margin-top: 40px;
  border-top: 5px solid #3F51B5;
}

/* Form Styling */
form input, form textarea, form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #3F51B5;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #2c3e90;
}