/* Başkan Yardımcısı Sayfası Stilleri */
.baskan-page {
    font-family: 'Open Sans', sans-serif;
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px); 
}

.baskan-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.baskan-image {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.baskan-image img {
    max-width: 90%; /* Başkan Yardımcısı için biraz daha küçük */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.baskan-image img:hover {
    transform: scale(1.02);
}

.baskan-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.baskan-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2.3rem; /* Başkan Yardımcısı için biraz daha küçük */
    color: #1a1a1a;
    text-align: center;
    margin: 0.5rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.baskan-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #255938;
}

.baskan-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-top: 2rem;
}

/* İçerikteki Başlıklar */
.baskan-description h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin: 2rem 0 1rem;
}

.baskan-description h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 0.8rem;
}

/* İçerikteki Listeler */
.baskan-description ul,
.baskan-description ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.baskan-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* İçerikteki Linkler */
.baskan-description a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.baskan-description a:hover {
    border-bottom-color: #000000;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .baskan-page {
        padding: 1rem 0;
    }

    .baskan-title {
        font-size: 1.8rem;
    }

    .baskan-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .baskan-description h2 {
        font-size: 1.5rem;
    }

    .baskan-description h3 {
        font-size: 1.2rem;
    }
}

/* Animasyon */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
