.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding-top: 80px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.about-section {
    padding-top: 100px;
}

.history-section .card,
.team-section .card {
    border: none;
    background-color: #f8f9fa;
}

.team-section .card-title {
    color: #333;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #a777e3;
    border-color: #a777e3;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6e8efb;
    border-color: #6e8efb;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}