/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e8f5e9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Header */
  header {
    background-color: #388e3c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
  }
  
  nav a:hover {
    background-color: #2e7d32;
  }
  
  /* Main Content */
  main section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  main h2 {
    color: #2e7d32;
    margin-bottom: 10px;
  }
  
  main h3 {
    color: #1b5e20;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
    font-size: 0.9rem;
    color: #666;
  }
  
  footer a {
    color: #388e3c;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

    img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      display: block;
      margin: 10px auto;
      border: 3px solid #444;
      border-radius: 10px;
    }
    .full-box-img {
      width: 100%;
      height: auto;
      max-height: 400px; 
      object-fit: cover;
      border: 3px solid #444;
      border-radius: 10px;
      display: block;
      margin: 10px auto;
    }
    
    
  
  