@font-face {
    font-family: 'Cairo';
    src: url('Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Cairo', sans-serif;
    padding-top: 56px;
}

section {
    padding: 80px 0;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/p05.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
}
.nav-link {
    font-weight: 500;
}
.mission-box {
    border-left: 4px solid #0d6efd;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.mission-box:hover {
    background-color: #f8f9fa;
    transform: translateY(-5px);
}
.event-card {
    transition: all 0.3s;
    margin-bottom: 20px;
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.testimonial-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.testimonial-author {
    font-weight: bold;
    margin-top: 15px;
}
footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}