
body {
  background: #1A1A2E;
  color: #FFF;
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 20px;
}

.btn, .cta {
  background: linear-gradient(to right, #FF416C, #FF4B2B);
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
  display: inline-block;
  margin: 10px;
}

.btn:hover, .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
}

.btn-group {
  float: right;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-links a {
  flex: 1 1 200px;
  margin: 5px 10px;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
  text-decoration: underline;
}


.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-btn {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
}
