body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #f4f6f9;
}
.navbar-custom {
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.navbar-custom .navbar-brand img {
    height: 40px;
    margin-right: 10px;
}
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-caption {
    position: absolute;
    bottom: 20%;
    left: 5%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
}
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}
.news-card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    border: none;
    height: 100%;
}
.news-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.news-img {
    height: 200px;
    object-fit: cover;
}
.kepsek-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.footer-custom {
    background: #343a40;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 50px;
}