/* Global Styles */
html,
body {
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Global Image Styles */
.step {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.step:last-child {
  margin-bottom: 0;
}
.step img {
  max-height: 60px;
  padding: 10px;
}

/* Card Styles */
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  flex-grow: 1;
}

.card ul {
  text-align: left;
  list-style-position: inside;
  padding-left: 0;
}

.card ul li {
  margin-left: 0;
}

/* Form Styles */
.form-control {
  border-radius: 8px;
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
  font-weight: bold;
}

.accordion-button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Responsive Styles */
.narrow-container {
  max-width: 768px;
  width: 100%;
}

@media (max-width: 767px) {
  .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-btn {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-btn {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .retrofit-img {
    max-width: 68%;
  }
}

/* Footer Styles */
footer {
  background-color: #343a40;
  color: white;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  text-decoration: underline;
}

.shadow-top-sm {
  box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.nav-link.fw-bold {
  font-size: 0.9rem;
  font-weight: 600 !important;
}
