/* Global Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
header {
  background-color: #343a40;
}

header .navbar-brand {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

header .navbar-nav .nav-link {
  color: #fff;
  font-weight: bold;
}

header .navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Hero Styles */
.hero-section {
  background-color: #007bff;
  color: #fff;
  padding: 100px 0;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
}

.hero-section p {
  font-size: 24px;
  margin-bottom: 48px;
}

.hero-section .btn-primary {
  background-color: #fff;
  border-color: #fff;
  color: #007bff;
  font-size: 18px;
  font-weight: bold;
}

.hero-section .btn-primary:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}

/* Footer Styles */
footer {
  background-color: #343a40;
  color: #fff;
  padding: 48px 0;
}

footer h4 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

footer p {
  font-size: 16px;
  margin-bottom: 24px;
}

footer ul li a {
  color: #fff;
}

footer ul li a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  header .navbar-brand {
    font-size: 20px;
  }
  
  header .navbar-nav .nav-link {
    font-size: 16px;
  }
  
  .hero-section h1 {
    font-size: 36px;
  }
  
  .hero-section p {
    font-size: 18px;
  }
  
  .hero-section .btn-primary {
    font-size: 16px;
  }
  
  footer h4 {
    font-size: 20px;
  }
  
  footer p {
    font-size: 14px;
  }
  
  footer ul li a {
    font-size: 14px;
  }
}

/* styles.css */

/* Service box */

.service-box {
  background-color: #f2f2f2;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.service-box .service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: #363f45;
}

.service-box h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  margin-bottom: 0;
}

.page-title {
  background-color: #f2f2f2;
  padding: 10px;
  margin-bottom: 20px;
}

.page-title h1 {
  margin: 0;
  padding: 0;
  font-size: 28px;
  font-weight: bold;
}

.about-us-section {
  background-color: #f2f2f2;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.about-us-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-us-section p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Pricing page styles */

.page-title {
  padding: 20px;
  background-color: #f2f2f2;
}

.pricing-plans {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.pricing-plan {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 15px;
}

.pricing-plan h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

/* Style the sign up button */
.pricing-plan a.btn {
  display: inline-block;
  margin: 15px auto 0;
  text-align: center;
}

.price {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.price span {
  font-size: 16px;
  color: #999;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}



