/* Button fixes */

/* Fix for index-btn-secondary in cards */
.index-feature-card .index-btn-secondary {
    background-color: transparent !important;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.index-feature-card .index-btn-secondary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Fix for Contact Us button in CTA section */
.cta-section .index-btn-secondary {
    background-color: #1e40af !important;
    color: white !important;
    border: none;
}
