.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.selected {
  color: #f19528 !important;
}

.dropdown-menu > li > .nav-link {
  text-align: center;
}

.dropdown > ul {
  @media (min-width: 768px) {
    min-width: auto;
  }
  @media (max-width: 767.98px) {
    width: fit-content !important;
  }
}

h4 {
  width: 250px;
}

/* Section styling */
.full-width-image-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust the height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Text overlay */
.text-overlay {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.text-overlay h1 {
  font-size: 3rem; /* Adjust the heading size */
  margin-bottom: 10px;
}

.text-overlay p {
  font-size: 1.5rem; /* Adjust the paragraph size */
}

/* Full-width image */
.full-width-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Section styling */
.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column; /* Stack heroes vertically */
}

/* Individual hero styling */
.hero {
  padding: 5vh 3vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
}

/* Hero background styles for distinction */
.hero:nth-child(1) {
}

.hero:nth-child(2) {
  background: linear-gradient(150deg, #f19528 30%, #1e6e86 100%);
  color: white;
}

.hero:nth-child(3) {
}

/* Typography */
.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 800px;
}

.main-heading {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin: 50px 0;
}

.featurette-section {
  padding: 50px 0;
}

.featurette {
  margin-bottom: 50px;
}

.featurette img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.featurette .featurette-text {
  padding: 20px;
}

@media (min-width: 768px) {
  .featurette img {
    max-width: 400px;
  }

  .featurette .featurette-text {
    padding: 0 40px;
  }
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
}

.feature-icon {
  font-size: 3rem; /* Large icon size */
  color: #f19528; /* Custom icon color */
}

.feature-title {
  font-size: 1.5rem;
  margin: 15px 0;
  font-weight: bold;
  min-height: 4rem; /* Sets a consistent height for titles */
}

.feature-text {
  font-size: 1rem;
  color: #6c757d; /* Muted text color */
}
.features-section .text-center {
  text-align: left; /* Align all text to the left */
}
@media (max-width: 767.98px) {
  .features-section {
    padding: 2rem;
  }
  .feature-title {
    font-size: 1.3rem;
    min-height: auto;
  }

  .feature-text {
    font-size: 0.9rem;
  }
}

/* Four-column layout */
.features-four-columns .row > div {
  flex: 0 0 25%; /* Adjusts each column width to 25% */
  max-width: 25%; /* Ensures consistent sizing */
}

.features-four-columns .feature-icon {
  font-size: 2rem;
  color: #f19528;
}

.features-four-columns .feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.features-four-columns .feature-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments for four-column layout */
@media (max-width: 768px) {
  .features-four-columns .row > div {
    flex: 0 0 100%; /* Stack columns on mobile */
    max-width: 100%;
  }

  .features-four-columns .row {
    row-gap: 30px; /* Add spacing between rows on smaller screens */
  }
}

.video-hero {
  background-color: #f8f9fa;
  padding: 15vh 0; /* Increased padding for more separation */
}

.video-hero + .video-hero {
  margin-top: 10vh; /* Ensures spacing between consecutive video-hero sections */
}

.video-hero .hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.video-hero .hero-text {
  font-size: 1.2rem;
  color: #6c757d;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-hero {
    background-color: #f8f9fa;
    padding: 1rem; /* Increased padding for more separation */
    margin: 0;
  }
  .video-hero .hero-title {
    font-size: 2rem;
    margin: 1rem 0;
  }

  .video-hero .hero-text {
    font-size: 1rem;
  }
}
.jumbotron {
  margin: 10vh 0; /* Ensures spacing between consecutive video-hero sections */
  padding: 5vh 10vh;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Titles and Text Styling */
.jumbotron-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.jumbotron-text {
  font-size: 1.1rem;
  margin: 2rem 0;
}

/* Light Mode */
.bg-light {
  background-color: #f8f9fa !important;
  color: #212529 !important;
}

/* Dark Mode */
.bg-dark {
  background-color: #343a40 !important;
  color: #ffffff !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .jumbotron-title {
    font-size: 1.5rem;
    margin: 0;
  }

  .jumbotron-text {
    font-size: 1rem;
  }

  .jumbotron {
    padding: 2rem;
    margin: 20px 10px; /* Add spacing between stacked jumbotrons on small screens */
  }
}

.accordion-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.accordion-header button {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.accordion-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.accordion-body em {
  font-style: italic;
}
.accordion-button:not(.collapsed) {
  color: #f19528;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* Centers the list horizontally */
  width: fit-content;
  text-align: left; /* Aligns list items to the left */
}

.contact-list li {
  font-size: 1.5rem; /* Makes the text larger */
  color: #333;
  margin: 20px 0; /* Adds more spacing between items */
  display: flex;
  align-items: center;
}

.contact-list i {
  font-size: 2rem; /* Increases the icon size */
  color: #f19528;
  margin-right: 15px; /* Adds more space between the icon and text */
}

.contact-list a {
  font-size: 1.5rem; /* Matches the text size */
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  color: #1e8656;
}

.terms-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.terms-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #f19528;
  margin-bottom: 40px;
}

.terms-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-section ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #555;
}

.terms-section ul li {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .features-section .row {
    row-gap: 30px; /* Adds spacing between rows */
  }
  .featurette-section {
    padding: 40px 20px; /* Adds more padding for mobile */
    text-align: center;
  }

  .featurette-section .lead {
    font-size: 1rem; /* Makes text smaller for mobile */
    line-height: 1.6; /* Improves readability */
    word-wrap: break-word; /* Ensures long words wrap properly */
    margin-bottom: 1rem; /* Adds spacing between paragraphs */
  }

  .featurette-section h3 {
    font-size: 1.8rem; /* Adjusts heading size for mobile */
    margin-bottom: 2rem;
  }

  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px; /* Centers the list and limits width */
  }

  .contact-list li {
    font-size: 1rem; /* Adjusts text size for smaller screens */
    color: #333;
    margin-bottom: 15px; /* Adds spacing between list items */
    display: flex;
    flex-wrap: wrap; /* Ensures content wraps on smaller screens */
    justify-content: center; /* Centers items horizontally */
  }

  .contact-list i {
    font-size: 1.2rem; /* Reduces icon size for mobile */
    color: #f19528;
    margin-right: 10px; /* Space between icon and text */
  }

  .contact-list a {
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
  }

  .contact-list a:hover {
    color: #1e8656;
  }
}

.practical-tips-section {
  padding: 50px 20px;
}

.practical-tips-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.tip-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
  font-size: 1.5rem;
  color: #f19528;
}

.tip-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.info-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.info-card ol {
  padding-left: 20px;
}

.info-card ol li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.info-card ol li strong {
  color: #f19528;
}

.participation-section h2,
.petition-section h2 {
  font-size: 2rem;
  color: #333;
}

.participation-section,
.petition-section {
  padding: 50px 20px;
  text-align: center;
}
