/* ===== Reset and Font ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Merriweather', serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.7;
  padding-top: 120px; /* To avoid overlap with fixed navbar */
}

/* ===== Section Styling ===== */
section {
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 80px; /* ⭕ Rounded like your screenshot */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* ===== Headings ===== */
h1, h2 {
  color: #1d3557;
  margin-bottom: 20px;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

h2 {
  font-size: 24px;
  margin-top: 30px;
}

/* ===== Paragraphs ===== */
p {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

/* ===== Contact Section Specific ===== */
.contact-us {
  text-align: center;
  background-color: #ffffff;
}

/* ===== Footer ===== */
footer {
  background-color: #e5f2e9;
  text-align: center;
  padding: 20px 10px;
  font-size: 16px;
  border-top: 1px solid #ccc;
}

/* ===== Social Icons ===== */
footer .fa {
  font-size: 28px;
  margin: 0 10px;
  color: #1d3557;
  transition: color 0.3s ease;
}

footer .fa:hover {
  color: #0cb648;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
  section {
    padding: 20px;
    border-radius: 40px;
  }

  h1 {
  font-size: 36px;       /* Main heading */
}

h2 {
  font-size: 30px;       /* Subheadings */
}

p {
  font-size: 30px;       /* Paragraph text */
}
}
