/* --- Shared Section Title Styles --- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FBBF24;
    margin: 0.5rem auto 0;
}

/* --- Shared Process Step Styles --- */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.process-step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

/* --- FAQ Accordion Styles --- */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.faq-item .faq-question button .icon-plus { display: block; }
.faq-item .faq-question button .icon-minus { display: none; }
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-item.open .faq-question button .icon-plus { display: none; }
.faq-item.open .faq-question button .icon-minus { display: block; }

/* --- Dropdown Styles --- */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5rem;
    overflow: hidden;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #1E3A8A;
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Mobile Menu Styles --- */
#mobile-menu {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#mobile-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4b5563;
    transition: background-color 0.2s ease-in-out;
}
#mobile-menu a:hover {
    background-color: #f3f4f6;
}
#mobile-menu .pl-10 {
    padding-left: 2.5rem;
}

/* --- Slideshow Styles --- */
.slideshow-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.mySlides {
    display: none;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* --- Off-Canvas Application Form Styles --- */
#offcanvas-form-panel {
    position: fixed;
    top: 0;
    right: -550px;
    width: 550px;
    max-width: 90%;
    height: 100%;
    z-index: 1000;
    background-color: white;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    padding: 2rem;
}
#offcanvas-form-panel.open {
    right: 0;
}
#form-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
    transition: opacity 0.4s ease-in-out;
}
#form-backdrop.active {
    display: block;
}
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #4b5563;
    cursor: pointer;
    z-index: 1010;
}
.close-button:hover {
    color: #ef4444;
}