 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Roboto', sans-serif;
      background-color: #fafafa;
      color: #333;
      line-height: 1.6;
      padding: 20px;
    }
   header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  font-family: 'Playfair Display', serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

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

.nav-links li a:hover {
  color: #0077b6;
}

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #2c3e50;
    }
    .container {
      display: flex;
      max-width: 1200px;
      margin: 40px auto;
      gap: 20px;
    }
    .main {
      flex: 3;
    }
    .sidebar {
      flex: 1;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .sidebar h3 {
      margin-bottom: 15px;
      font-size: 1.2rem;
    }
    .sidebar ul {
      list-style: none;
    }
    .sidebar li {
      margin-bottom: 10px;
    }
    .sidebar li::before {
      content: '📌';
      margin-right: 8px;
    }
    .card {
      background: #fff;
      margin-bottom: 30px;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .card h2 {
      font-family: 'Playfair Display', serif;
      color: #34495e;
      margin-bottom: 10px;
    }
    .card p {
      font-size: 0.95rem;
      color: #555;
    }
    .search-box {
      margin-bottom: 20px;
    }
    .search-box input {
      width: 100%;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    footer {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9rem;
      color: #777;
    }