/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    padding: 100px 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.icon-wrapper {
    font-size: 2.5rem;
    color: #0d6efd;
}

/* Stats Section */
.stats {
    background-color: #f8f9fa;
}

/* CTA Section */
.cta {
    background-color: white;
}

/* App Badges */
.app-badges img {
    transition: transform 0.2s;
}

.app-badges img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Contact Section */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}