/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
    padding: 20px;
  }
  
  /* Header Styling */
  header {
    background: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
  }

  /* Hero Image */
  .hero {
    margin-left:10%;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  /* Container */
  .container {
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Titles */
  h2 {
    color: #333;
    margin-bottom: 15px;
    margin-top: 30px;
  }
  
  /* Paragraphs */
  p {
    margin-bottom: 15px;
  }
  
  /* Blog List on Homepage */
  .blog-list {
    list-style: none;
    padding-left: 0;
  }
  
  .blog-list li {
    margin-bottom: 10px;
  }
  
  .blog-list a {
    text-decoration: none;
    color: #4CAF50;
    font-weight: bold;
  }
  
  .blog-list a:hover {
    text-decoration: underline;
  }
  
  /* Form Styling */
  form input[type="email"],
  form input[type="text"],
  form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background: #45a049;
  }
  
  /* Testimonials Section */
  .testimonials {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
  }
  
  /* Footer */
  footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #555;
  }
  
  footer a {
    color: #4CAF50;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Success Message */
  .message {
    padding: 10px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Comments Section in Blogs */
  .comments {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .comments p {
    margin-bottom: 10px;
  }
  
  .comments strong {
    color: #4CAF50;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      padding: 10px;
    }
    
    .container {
      padding: 15px;
    }
  }
  