/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f7f9fc;
  text-align: center;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: rgb(248, 248, 248);
  padding: 100px 20px 80px 20px;
  background-size: cover;
  background-position: center;
}

#hero #logo {
  width: 750px; /* original size */
  margin: 0 auto 20px auto; /* center the logo */
  display: block; /* ensures it’s centered */
}

#hero h1 {
  font-size: 3rem;
  margin: 10px 0;
}

#hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  margin: 10px;
  background-color: #ffffff;
  color: #1e88e5;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s, background-color 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #e0e0e0;
}

.cta-button .icon {
  width: 20px;
  height: 20px;
}

/* Project Info */
#project-info {
  padding: 80px 20px;
  background: #f7f9fc;
}

#project-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1e88e5;
}

#project-info p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Features */
#features {
  padding: 80px 20px;
}

#features h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1e88e5;
}

.feature-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  background: #e3f2fd;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #1e88e5;
}

/* How It Works */
#how-it-works {
  padding: 80px 20px;
  background: #f7f9fc;
}

#how-it-works h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1e88e5;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.step {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-8px);
}

.step-number {
  font-size: 2rem;
  color: #1e88e5;
  font-weight: bold;
}

.step h3 {
  margin: 1rem 0 0.5rem;
}

.step p {
  color: #1a1a1a;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #1e88e5;
  color: white;
  padding: 30px 20px;
  font-size: 0.9rem;
}

footer a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: underline;
  transition: color 0.3s;
}

footer a:hover {
  color: #cce4ff;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-cards, .steps {
    flex-direction: column;
    align-items: center;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  #hero p {
    font-size: 1rem;
  }

  #hero #logo {
    width: 300px; /* smaller on mobile */
    margin-bottom: 20px;
  }
}