* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #081c3a 0%, #254d92 100%);
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero img {
  width: 100px;
}
.hero h2 {
  font-size: 2rem;
  color: white;
}
.hero p {
  font-size: 1.2rem;
  color: white;
}
.back-button {
  color: black;
  border: none;
  padding: 8px 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}
.feature {
  background: rgba(255, 255, 255, 0.23);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.feature img {
  width: 40px;
}
.feature:hover {
  transform: translateY(-10px);
}
.feature a {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: none;
}
.feature a:hover {
  color: aqua;
}
.footer {
  background-color: #0a1f44;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-footer img {
  height: 50px;
}

.footer h3 {
  margin: 0;
  font-size: 18px;
}

.footer p {
  font-size: 14px;
  margin: 5px 0;
}
.social-icons-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.social-icons-footer img {
  width: 30px;
  height: 30px;
}
.review-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}
.review-home .det {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.review-home i {
  font-size: 2rem;
  color: black;
  margin-bottom: 10px;
}
.review-home h3 {
  color: black;
  margin-bottom: 30px;
}

.review-home h4 {
  color: black;
}
