/* Additional styles for home page */

.hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.research-cards {
    margin-top: 3rem;
}

.card-item {
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.card-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #f5f5f5;
}

.intro-section {
    background-color: #ffffff;
}

.featured-research {
    background-color: #f9f9f9;
}

.research-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.research-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.insights-section {
    background-color: #ffffff;
}

.insight-card {
    transition: all 0.3s ease;
}

.insight-card:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
