

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 20px;

}

.container {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {

font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  margin-bottom: 10px;
}

h2 {
  color:#388e3c;
  margin-top: 30px;
}

p, ul {
 
  line-height: 1.6;
}

ul {
  margin-left: 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  margin-right: 15px;
  padding: 12px 28px;
  background: #4CAF50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background:#388e3c;
  transform: translateY(-2px);
}