/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    min-height: 500px;
}

/* Features Section */
.feature-box {
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats/Counter Section */
.stats-section {
    background-color: var(--light, #ECF4FF);
}