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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

/* Hero Section */
.hero {
  background-color: #3498db;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 20px;
}

.hero-icon {
  font-size: 5rem;
  margin-top: 20px;
}

/* Features Section */
.features {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 25px;
  text-align: center;
  border: 4px solid #6366f1;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Visual Section */
.visual-section {
  padding: 50px 20px;
  background-color: #ecf0f1;
  text-align: center;
}

.dashboard-mockup {
  background: white;
  max-width: 500px;
  margin: 30px auto;
  border: 2px solid #bdc3c7;
}

.mockup-header {
  background: #3498db;
  padding: 10px;
}

.mockup-content {
  padding: 30px;
}

.mockup-stat {
  padding: 15px;
  background: #f8f9fa;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.stat-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #27ae60;
}

.visual-caption {
  margin-top: 20px;
  color: #7f8c8d;
  font-style: italic;
}

/* Problems Section */
.problems {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-card {
  background: #fff3cd;
  padding: 20px;
  border-left: 4px solid #f39c12;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.problem-card p {
  color: #666;
  font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
  padding: 50px 20px;
  background-color: #3498db;
  color: white;
  text-align: center;
}

.how-it-works h2 {
  color: white;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: white;
  color: #333;
  padding: 20px;
  flex: 1;
  max-width: 200px;
  border: 2px solid #2980b9;
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #e74c3c;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2c3e50;
}

.step p {
  font-size: 0.9rem;
  color: #666;
}

.step-arrow {
  font-size: 1.5rem;
  color: white;
}

/* Target Users Section */
.target-users {
  padding: 50px 20px;
  background-color: #ecf0f1;
}

.users-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.user-card {
  background: white;
  padding: 25px;
  text-align: center;
  border: 4px solid #6366f1;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.user-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.user-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.user-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
  padding: 50px 20px;
  background: #f8f9fa;
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  padding: 15px;
  background: white;
  margin-bottom: 10px;
  border-left: 4px solid #6366f1;
  border-radius: 8px;
}

.benefit-icon {
  font-size: 1.2rem;
  color: #27ae60;
  margin-right: 10px;
}

.benefit-text {
  font-size: 1rem;
  color: #333;
}

/* Final CTA Section */
.cta-final {
  padding: 50px 20px;
  background-color: #27ae60;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

.cta-content p {
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: #34495e;
  color: white;
  padding: 30px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-section p {
  color: #bdc3c7;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  background: #2c3e50;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2c3e50;
  color: #bdc3c7;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-icon {
    font-size: 4rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .features-grid,
  .problems-grid,
  .users-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .step {
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
