* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Banner Image Styling */
.banner {
  width: 100%;
  height: 55vh; /* Full screen height */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Banner Text Styling */
.banner h1 {
  font-size: 4rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  border-radius: 0.25rem;
}

/* Content Section */
.content {
  padding: 60px 20px;
  max-width: 100%;
  margin: 0 auto;
  text-align: justify;
  background-color: #fff;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2.5rem;
  }

  .content h2 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}

.view-details-btn {
  margin-top: 20px;
  background-color: #3aafa9;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
  text-decoration: none;
}
.view-details-btn:hover {
  background-color: #2e8c8a;
  color: white;
  text-decoration: none;
}
