/* Landing Page Styles - Simplified */

* {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
}

body {
  background-color: white;
  color: #212529;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.3rem;
  color: #212529 !important;
}

.nav-link {
  color: #6c757d !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #28a745 !important;
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
  margin: auto;
  border: 1 black;
}

.hero-section h1 {
  line-height: 1.3;
  color: #212529;
}

.hero-section .lead {
  font-size: 1.1rem;
  color: #6c757d;
}

/* Hero Icon */
.hero-icon {
  font-size: 150px;
  color: #28a745;
  opacity: 0.2;
}

/* Description Section */
.description-section {
  background: white;
}

.description-section h2 {
  color: #28a745;
  margin-bottom: 1rem;
}

.description-section .text-muted {
  color: #6c757d;
  line-height: 1.8;
}

.description-section h5 {
  color: #212529;
  font-size: 0.95rem;
}

.description-section .text-success {
  color: #28a745 !important;
}

.description-section .d-flex {
  transition: all 0.3s ease;
}

.description-section .d-flex:hover {
  transform: translateX(5px);
}

.bi {
  color: #28a745 !important;
}
/* Buttons */
.btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-primary:hover {
  background-color: #20c997;
  border-color: #20c997;
}

.btn-outline-primary {
  border-color: #28a745;
  color: #28a745;
}

.btn-outline-primary:hover {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.features-section h2 {
  font-size: 2rem;
  color: #212529;
  margin-bottom: 3rem;
}

.feature-item {
  padding: 30px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #28a745;
}

.feature-item h5 {
  color: #212529;
  font-size: 1rem;
}

.feature-item p {
  color: #6c757d;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: white;
}

.cta-section .bg-primary {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  padding: 60px 40px !important;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.btn-light {
  color: #28a745;
  background-color: white;
  border-color: white;
}

.btn-light:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* Footer */
footer {
  background-color: #f8f9fa;
  margin-top: 60px;
}

footer p {
  margin: 0;
  color: #6c757d;
}

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

  .hero-section .lead {
    font-size: 1rem;
  }

  .hero-icon {
    display: none;
  }

  .description-section .bg-light {
    padding: 2rem !important;
  }

  .description-section h2 {
    font-size: 1.5rem;
  }

  .features-section h2 {
    font-size: 1.5rem;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .cta-section .bg-primary {
    padding: 40px 20px !important;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

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

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section .d-flex {
    flex-direction: column !important;
  }

  .hero-section .btn {
    width: 100%;
  }

  .description-section .bg-light {
    padding: 1.5rem !important;
  }

  .description-section h2 {
    font-size: 1.3rem;
  }

  .description-section h5 {
    font-size: 0.9rem;
  }

  .description-section .small {
    font-size: 0.8rem;
  }

  .features-section {
    padding: 40px 0;
  }

  .features-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    padding: 15px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .btn-light {
    width: 100%;
  }
}
