/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:system-ui, 'Segoe UI';
}

/* Body and Layout */
body {
  background-color: white;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}


.logo img {
    height: 100px; /* Adjust height to fit your design */
    width: auto;
    display: block;
}

.logo img {
  height: 100px;
  width: auto;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #010101;
  padding: 5px 10px;
  transition: background 0.3s ease;
}

nav a:hover,
nav a.active {
  background-color: #fffcfc;
  border-radius: 4px;
}

/* Content Section */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.card {
  background-color: #eaeaea;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card h2, .card h3 {
  margin-bottom: 15px;
  color: #222;
}

.card p {
  margin-bottom: 20px;
}
