/* home.css */

/* Header */
.header {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.title {
  font-size: 30px;
  margin: 0;
}

.subtitle {
  font-size: 18px;
  margin: 0;
}

/* Content Section */
.content {
  padding: 40px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  margin-bottom: 30px;
}

.features {
  margin-bottom: 30px;
}

.feature {
  text-align: center;
  margin-bottom: 30px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Statistics Section */
.statistics {
  text-align: center;
}

.counter {
  font-size: 10px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

.footer p {
  margin: 0;
}
