/* Custom Scrollbar for a more polished look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F4F9F4; 
}
::-webkit-scrollbar-thumb {
    background: #86A789; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4F6F52; 
}

/* Card Hover Animation */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Navbar Scroll State Styles */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Accordion Animation Helpers */
.faq-content {
    display: none; /* Handled by jQuery, but fallback */
}
.faq-btn.active i {
    transform: rotate(45deg); /* Turns the plus into an X */
    color: #4F6F52; /* Darker green on active */
}