/* Hakkında Sayfası için Özel Stiller */
:root {
    --primary-color: #0073aa;
    --primary-dark: #005b87;
    --primary-light: #00a0d2;
    --text-main: #333;
    --text-secondary: #666;
    --bg-main: #ffffff;
    --bg-alt: #f5f9fc;
    --border-color: #e5e5e5;
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
}

/* Ana Container */
.about-container {
    max-width: 900px;
    padding: 30px 20px;
    margin: 0 auto;
}

/* Sayfa Başlığı */
.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.page-header h1 i {
    margin-right: 12px;
}

.header-line {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Giriş Bölümü */
.about-intro {
    margin-bottom: 50px;
    text-align: center;
}

.intro-icon-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.intro-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-alt);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.15);
    transition: all 0.3s ease;
}

.intro-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 115, 170, 0.2);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Bölüm Stilleri */
.about-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--bg-main);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 115, 170, 0.2);
    position: relative;
    display: flex;
    align-items: center;
}

.about-section h2 i {
    margin-right: 12px;
    font-size: 22px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-content {
    color: var(--text-secondary);
}

.section-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Zaman Çizelgesi */
.timeline {
    margin-top: 30px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
    background-color: var(--bg-main);
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.date-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background-color: var(--bg-alt);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Kaynaklar Bölümü */
.resources-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.resource-item {
    margin-bottom: 0;
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-alt);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.resource-link:hover {
    background-color: rgba(0, 115, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.resource-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 18px;
}

.resource-info {
    flex: 1;
}

.resource-title {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.resource-type {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Ekip Bölümü */
.team-section {
    background-color: var(--bg-main);
}

.team-member {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 25px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.member-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.2);
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 15px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 15px;
    margin-top: 50px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 115, 170, 0.25);
}

.cta-section h2 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section h2::after {
    background-color: white;
}

.cta-content {
    text-align: center;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    margin-right: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-container {
        padding: 20px 15px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .intro-icon-group {
        gap: 20px;
    }
    
    .intro-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .about-section h2 {
        font-size: 22px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .date-text {
        font-size: 12px;
        padding: 2px 6px;
    }
    
    .date-dot {
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
    
    .timeline-content h3 {
        font-size: 17px;
    }
    
    .resource-link {
        padding: 15px;
    }
    
    .resource-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .resource-title {
        font-size: 15px;
    }
    
    .resource-type {
        font-size: 13px;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .member-name {
        font-size: 18px;
    }
    
    .member-role {
        font-size: 14px;
    }
    
    .member-bio {
        font-size: 14px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 24px;
    }
    
    .intro-icon-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .intro-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    .about-section h2 {
        font-size: 20px;
    }
    
    .section-content p {
        font-size: 15px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .resource-link {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cta-button {
        width: 100%;
    }
}