/* Back to Top Button Animation */
#back-to-top {
    transition: opacity 0.4s, transform 0.4s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
/* FAQ Accordion */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.faq-content.active {
    opacity: 1;
}
/* Input Style - Unified Class */
.med-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    outline: none;
    color: #1f2937;
    background-color: #ffffff;
}
.med-input::placeholder {
    color: #9ca3af;
}
.med-input:focus {
    outline: none;
    border-color: #5C795E;
    box-shadow: 0 0 0 2px rgba(92, 121, 94, 0.2);
}
.med-input-icon {
    padding-left: 2.5rem;
}
.med-input-password {
    padding-right: 3rem;
}