/* styles.css */

/* Add your custom CSS styles here */

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

/* Adjust padding for the sections */
.section {
  padding: 60px 0;
}

/* Custom styles for the header and hero section */
header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.hero {
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin: 0;
}

/* Custom styles for the features section */
.features {
  background-color: #f9f9f9;
}

.features .col-md-4 {
  text-align: center;
}

.features i {
  font-size: 4rem;
  color: #007bff;
}

.features h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Custom styles for the call-to-action section */
.cta {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Style the CTA button */
.cta-btn {
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 30px;
  background-color: #007bff;
  color: #fff;
  transition: transform 0.2s ease
}

.cta-btn:hover {
  transform: scale(1.05);
}
