/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f4f4f9;
}

/* Header Styling */
header {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin: 10px 0 0;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('https://via.placeholder.com/1500x500') no-repeat center center/cover;
  height: 60vh;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  padding: 20px;
}

.hero h2 {
  font-size: 3rem;
  margin: 0;
}

.hero button {
  background: #2575fc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero button:hover {
  background: #6a11cb;
}

/* Call-to-Action Section */
.cta {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.cta h3 {
  font-size: 2rem;
  margin: 0 0 20px;
}

.cta button {
  background: #6a11cb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta button:hover {
  background: #2575fc;
}

/* Footer Styling */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #2575fc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Buttons */
button {
  font-family: inherit;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .cta h3 {
    font-size: 1.5rem;
  }
}
