body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.mentor-card {
    transition: transform 0.3s;
    height: 100%;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-card {
    transition: transform 0.3s;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 36px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#main-content {
    min-height: calc(100vh - 200px);
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.badge {
    font-size: 0.7rem;
    margin-right: 5px;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .mentor-card .card-img-top {
        height: 200px;
    }
}