/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #0077ff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #0056cc;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0077ff, #00c4ff);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero .cta-button {
  background-color: white;
  color: #0077ff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.hero .cta-button:hover {
  background-color: #f0f0f0;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 80px 0;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
}

/* Testimonials */
.testimonials {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonial {
  max-width: 600px;
  margin: 20px auto;
  font-style: italic;
}

/* Call to Action */
.cta {
  background-color: #0077ff;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta .cta-button {
  background-color: white;
  color: #0077ff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  transition: 0.3s;
}

.cta .cta-button:hover {
  background-color: #f0f0f0;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

.footer a {
  color: #00c4ff;
}