/* Main Content */
.section {
    padding: 80px 0;
}
/* Add to your styles.css file */
.section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.section-title-image {
  height: 60px;
  margin-left: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
}

/* Global Mobile-Friendly Enhancements */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    font-size: 16px;
}
@media (max-width: 700px) {
    html {
        font-size: 15px;
    }
}
@media (max-width: 500px) {
    html {
        font-size: 14px;
    }
}

a, button, .btn, .nav-link, .accordion-header {
    min-height: 44px;
}