/* Reset default margins/paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Typography */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header styles */
header {
  background-color: #98460f; /* Dark green */
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
.section-header {
    text-align: center; 
    margin-top: 20px;    /* space below navbar */
    margin-bottom: 20px; /* space above the cards */
}

.section-title {
    margin-bottom: 5px;  /* small gap between title and paragraph */
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1em;
}


/* Main content */
main {
  padding: 30px 20px;
  text-align: center;
}

main h2 {
  margin-bottom: 10px;
  color: #2e8b57;
}

main p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #555;
}

/* Grid layout */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 10px;
}

/* Card styles */
.card {
  background-color: white;
  border-radius: 10px;
  width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  text-align: left;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 10px 5px;
  font-size: 20px;
  color: #2e8b57;
}

.card p {
  margin: 0 10px 15px;
  font-size: 14px;
  color: #555;
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      background-color: #f0f0f0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      transition: color 0.3s;
      cursor: pointer;
    }

    .nav-links li a:hover {
      color: #007bff;
    }

    .search-login {
      display: flex;
      gap: 10px;
    }

    .search-login input {
      padding: 5px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .search-login button {
      padding: 6px 12px;
      border: none;
      background-color: #007bff;
      color: white;
      border-radius: 4px;
      cursor: pointer;
    }

    .search-login .login-btn {
      background-color: #28a745;
    }

    /* Modal Styles */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #fff;
      padding: 25px 30px;
      border-radius: 8px;
      text-align: center;
      width: 300px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      position: relative;
    }

    .modal-content h2 {
      margin-bottom: 15px;
      font-size: 20px;
      color: #333;
    }

    .modal-content p {
      margin: 5px 0;
      font-size: 16px;
    }

    .close-btn {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      cursor: pointer;
      color: #888;
    }

    .close-btn:hover {
      color: #000;
    }
     body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #eef6ff;
      color: #222;
    }

    header {
      background-color:#556B2F;
      padding: 15px 30px;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header nav a {
      margin-left: 20px;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    footer {
  background-color: #222;
  color: white;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.footer-column h3 {
  color: #00b3b3;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00b3b3; /* hover effect color */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}
