@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* General styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: #222;
  background-color: #fdfdfd;
  margin: 0;
  padding: 40px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-weight: 700;
  color: #111;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

p {
  margin-bottom: 1.5em;
}

a {
  color: #0055cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #003380;
  text-decoration: none;
}

/* Navigation */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 60px;
}

.navigation a {
  color: #222;
  font-weight: 600;
  font-size: 1.1em;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  color: #888;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-center {
  text-align: center;
}
