/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Roboto+Slab:wght@400;700&display=swap');

/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header Styles */
header {
  background-color: rgb(25,75,255);
  color: #fff;
  padding: 20px 15px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: 'Roboto Slab', serif;
}

header p {
  margin: 5px 0 0;
  font-size: 1rem;
}

/* Main Content Styles */
main {
  padding: 30px 20px;
  max-width: 900px;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Section Styles */
section {
  margin-bottom: 30px;
}

section h2 {
  font-size: 1.8rem;
  color: rgb(25,75,255);
  margin-bottom: 15px;
  font-family: 'Roboto Slab', serif;
}

section p {
  margin-bottom: 15px;
  font-size: 1rem;
}

section ul {
  margin: 10px 0;
  padding-left: 20px;
}

section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 15px 20px;
  background-color: rgb(25,75,255);
  color: #fff;
  font-size: 0.9rem;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-logo {
    width: 100px;
    height: auto;
    display: block;
    margin: 10px auto 0; /* Center the logo and add spacing */
}

/* Links */
a {
  color: rgb(25,75,255);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  main {
    padding: 20px;
  }

  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }
}