/* Main Content Styling */
#main {
  padding: 60px 0; /* Adjust padding as needed */
  overflow: visible; /* Ensure overflow is not hidden */
}

#main .container {
  max-width: 1200px; /* Ensure full width */
  margin: 0 auto; /* Center the content */
}

#main p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444444;
}

#main h1,
#main h2,
#main h3,
#main h4,
#main h5,
#main h6 {
  font-family: "Raleway", sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333333;
}

#main h1 {
  font-size: 2.5rem;
}

#main h2 {
  font-size: 2rem;
}

#main h3 {
  font-size: 1.75rem;
}

#main h4 {
  font-size: 1.5rem;
}

#main h5 {
  font-size: 1.25rem;
}

#main h6 {
  font-size: 1rem;
}

#main .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

#main .col {
  padding: 0 15px;
  flex: 1;
}

/* Ensure images are responsive */
#main img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Styling for buttons */
#main .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#main .btn-primary {
  background-color: #206bfb;
  color: #ffffff;
  border: none;
}

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

#main .btn-secondary {
  background-color: #6c757d;
  color: #ffffff;
  border: none;
}

#main .btn-secondary:hover {
  background-color: #5a6268;
}

/* Link styling */
#main a {
  color: #206bfb;
  text-decoration: none;
}

#main a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Additional spacing between sections */
#main section {
  padding: 60px 0; /* Add space between sections */
}

/* Section title styling */
#main .section-title {
  text-align: center;
  padding-bottom: 30px;
}

#main .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333333;
}

#main .section-title p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #777777;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #main .container {
    padding: 0 15px;
  }

  #main .row {
    margin: 0;
  }

  #main .col {
    padding: 0;
  }
}

/* Masthead styling */
.masthead {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0; /* Adjust padding for a bigger header */
  color: white;
  text-align: center;
  overflow: hidden;
}

.masthead .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
}

.masthead .page-heading {
  position: relative;
  z-index: 1;
}

.masthead .page-heading h1 {
  font-size: 4rem; /* Big header */
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.masthead .page-heading .subheading {
  font-size: 2rem; /* Smaller sub-header */
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
