/* Custom styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 70px; /* for fixed navbar */
}

/* Navbar styles */
.navbar-brand {
  font-weight: 700;
}

/* Hero section */
.hero-section {
  height: 100vh;
  background: url('img/hero.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Section headings */
section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #0d6efd;
  display: block;
  margin: 10px auto 0;
}

/* Card styles */
.card img {
  max-height: 150px;
  object-fit: cover;
}
.card .card-body img {
  max-width: 60px;
  margin-bottom: 15px;
}

/* FAQ Accordion */
.accordion-button {
  font-weight: 500;
}

/* Team Section */
#team .card-img-top {
  border: 3px solid #0d6efd;
}

/* Blog Section */
#blog .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Contact form */
#contact form {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

/* Footer */
footer a:hover {
  color: #0d6efd;
}

/* Additional spacing for sections */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
