/* Landing Page Styles */

/* General Styles */
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: #032975 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2rem;
    }
    
    .step-connector {
        display: none;
    }
}

/* Remove conflicting styles from base */
.landing-hero .container {
    max-width: 1200px;
}

/* Ensure buttons have consistent hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}