* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#7b2cbf), to(#290f3f));
  background: linear-gradient(to bottom, #7b2cbf, #290f3f);
  color: #333;
  line-height: 1.6;
}

header {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}

nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3f1861;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

nav .logo img {
  width: 50px;
}

nav a {
  color: #3f1861;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

nav a:hover {
  color: #7b2cbf;
}

.hero {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: url("https://images.unsplash.com/photo-1611162617210-7d673bf0f craw?auto=format&fit=crop&w=1920&q=80") no-repeat center center/cover;
}

.hero .hero-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
}

.hero .hero-content h1 {
  font-size: 2.5rem;
  color: #3f1861;
  margin-bottom: 1rem;
}

.hero .hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #7b2cbf;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.btn:hover {
  background: #290f3f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.features {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 20px;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.features .feature-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.features .feature-grid .feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.features .feature-grid .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.features .feature-grid .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3f1861;
}

footer {
  background: #3f1861;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  nav a {
    margin: 0 10px;
  }
}
/*# sourceMappingURL=style.css.map */