/* Shared styles for Akyempim Community Bank Plc - Blue & White Theme */

.sticky-header {
    transition: all 0.3s ease;
}

.hero-gradient {
    background: linear-gradient(135deg, #0a2a4a 0%, #1a4a8a 100%);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.faq-question {
    cursor: pointer;
    transition: all 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    .mobile-menu.open {
        display: block;
    }
}