/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  padding: 20px;
}

/* Apply Playfair Display to headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1.5em;
}

/* Optional: Navbar styling */
.navbar {
  background-color: #2c3e50;
  border: none;
}
.navbar a, .navbar-brand {
  color: white !important;
  font-weight: 600;
}