/* Change Default Button Background and Text Color */
.vc_btn3.vc_btn3-color-grey {
    background-color: #d4af37 !important; /* Your button color */
    color: #07111e !important; /* Your text color */
}

/* Automatically target all WPBakery custom styled column containers */
div[class*="vc_custom_"].vc_column-inner {
    background-color: #0a1628 !important;
}

/* 1. Style the closed accordion header bars */
.footer-dropdowns .vc_tta-panel-title > a {
    background-color: #0a1628 !important; /* Dark Blue */
    color: #ffffff !important;            /* White text */
    border: 1px solid #1a263b !important;
}

/* 2. Style the active/opened accordion bar */
.footer-dropdowns .vc_tta-panel.vc_active .vc_tta-panel-title > a {
    background-color: #0a1628 !important; /* Kept Dark Blue background */
    color: #d4af37 !important;            /* Gold/Yellow text when open */
}

/* 3. FIX: Style the toggle icon lines explicitly for open and closed states */
.footer-dropdowns .vc_tta-controls-icon::before,
.footer-dropdowns .vc_tta-controls-icon::after {
    border-color: #ffffff !important; /* White icon when closed */
}

.footer-dropdowns .vc_tta-panel.vc_active .vc_tta-controls-icon::before,
.footer-dropdowns .vc_tta-panel.vc_active .vc_tta-controls-icon::after {
    border-color: #d4af37 !important; /* Gold/Yellow icon when open */
}

/* 4. OPTIONAL: Style the dropdown content background so it isn't white */
.footer-dropdowns .vc_tta-panel-body {
    background-color: #0a1628 !important; 
    color: #ffffff !important;