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

body {
  font-family: "Arial", sans-serif;
  background: #f4f4f4;
  color: #333;
  scroll-behavior: smooth;
}

header {
  background: #333;
  padding: 1rem 0;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff6b6b;
}

.cta button {
  background: #ff6b6b;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta button:hover {
  background: #ff4b4b;
}

.hero {
  height: 100vh;
  background: url("hero-bg.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideInLeft 1s ease-in-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: slideInRight 1s ease-in-out;
}

.features,
.testimonials,
.footer {
  padding: 4rem 1rem;
  text-align: center;
}

.features h2,
.testimonials h2,
.footer h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.features h2::after,
.testimonials h2::after,
.footer h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #ff6b6b;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-cards,
.testimonial-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transform: scale(1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 1rem;
}

.footer {
  background: #333;
  color: #fff;
  padding: 2rem 1rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer .copyright {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #aaa;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.privacy-policy {
  padding: 8rem 1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.privacy-policy h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.privacy-policy h3 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-policy p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.privacy-policy ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.terms-of-service {
  padding: 8rem 1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.terms-of-service h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.terms-of-service h3 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.terms-of-service p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.terms-of-service ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}