
    body {
      font-family: 'Nunito', sans-serif;
      margin: 0;
      background: #f5fff7;
      color: #333;
    }

    header {
      background: #d4edda;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

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

    .hero {
      background: url('https://source.unsplash.com/1600x500/?community,event,nature') center/cover no-repeat;
      color: black;
      text-align: center;
      padding: 100px 20px;
    }

    .hero h1 {
      font-size: 3rem;
      margin: 0;
    }

    .section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
    }

    .event-banner {
      background: #c8e6c9;
      padding: 1rem;
      text-align: center;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

 .events-container {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap;
}

    .event-list {
      flex: 1;
      list-style-type: none;
      padding: 0;
    }

    .event-list li {
      background: #e8f5e9;
      margin-bottom: 15px;
      padding: 15px;
      border-left: 5px solid #2e7d32;
      border-radius: 4px;
      font-size: 1rem;
    }

    .event-image {
      flex: 1;
      max-width: 45%;
      border-radius: 10px;
      object-fit: cover;
    }

    .cta {
      text-align: center;
      margin-top: 40px;
    }

    .cta a {
      display: inline-block;
      background: #2e7d32;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    footer {
      background: #d4edda;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      margin-top: 50px;
    }
  </style>
</head>
<body>