/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: linear-gradient(to right, #fffde7, #ffffff);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
  }
  
  /* Header Styling */
  header {
    background-color: #16c10a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  /* Navigation */
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #fff59d;
  }
  
  /* Container */
  .container {
    max-width: 900px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  
  /* Headings */
  .container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #27c915;
  }
  
  /* Form Styling */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  form input, form textarea {
    padding: 10px 15px;
    border: 1px solid #1eff00;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
  }
  
  form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  form button {
    padding: 10px 20px;
    border: none;
    background-color: #25c816;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  form button:hover {
    background-color: #17c80e;
  }
  
  /* Post Card Styling */
  .card {
    background-color: #fff3e0;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #34ad18;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card h4 {
    margin-bottom: 5px;
    color: #e65100;
  }
  
  .card small {
    display: block;
    margin-bottom: 10px;
    color: #bf360c;
  }
  
  .card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    form input, form textarea, form button {
      width: 100%;
    }
  }