/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures footer stays at the bottom */
}

/* Header Styles */
header {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  position: relative;
}

header h1 {
  margin: 0;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
}

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

/* Section Styles */
.center-section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.center-section h2 {
  text-align: center;
  color: #333;
}

.center-section p {
  text-align: justify;
}

/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto; /* Ensures footer stays at the bottom */
}

/* Link Styling */
a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.top-right-image {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px; /* adjust size as needed */
  height: auto;
  border-radius: 50%; /* optional: makes it a circle */
}