/* About Page Styles */
.page-hero {
    /* Using a dark, modern background for the hero section */
    background: #0d1117; 
    color: #f1f1f1;
    padding: 140px 20px 80px; /* Mobil uyumluluk için sağ-sol padding eklendi */
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff; /* Title text color */
}

.highlight {
    /* Main brand color: Gold */
    color: #0d47a1; 
}

.page-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    color: #d1d5db; /* Lighter text for contrast */
    padding: 0 10px; /* Küçük ekranlarda metnin taşmasını önler */
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: #111; /* Slightly lighter black background */
    color: #f1f1f1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: #0d47a1; /* Gold icon color */
}

.mission-vision-content h2 {
    color: #fff;
}

.mission-vision-content p {
    color: #d1d5db;
}

.mission-vision-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #1a1a1a; /* Dark gray for image placeholder */
    border-radius: 16px;
    font-size: 6rem;
    color: #0d47a1;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #0d1117; /* Main dark background */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: #1a1a1a;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #0d47a1; /* Gold icon color */
}

.value-card h3 {
    color: #fff;
    font-weight: 600;
}

.value-card p {
    color: #d1d5db;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #0d1117; /* Main dark background */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.team-image {
    height: 200px;
    background: #222; /* Darker gray for image placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
}

.team-content {
    padding: 32px;
}

.team-content h3 {
    color: #fff;
}

.team-title {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-description {
    color: #d1d5db;
    line-height: 1.6;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.section-description {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================================== */
/* Responsive Design */
/* ====================================================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
    .page-description {
        font-size: 1rem;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr; /* 2 sütundan 1 sütuna düşürür */
        gap: 40px;
    }
    .mission-vision-image {
        height: 300px; /* Görüntü yüksekliğini küçültür */
    }
    .section-header {
        margin-bottom: 40px; /* Bölüm başlıkları için boşluğu azaltır */
    }
    .section-title {
        font-size: 2rem;
    }
    .values-grid, .team-grid {
        gap: 20px; /* Kartlar arasındaki boşluğu azaltır */
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .page-hero {
        padding: 120px 20px 60px; /* Dikey boşluğu azaltır */
    }
    .mission-vision-image {
        height: 250px;
    }
    .value-card, .team-card {
        padding: 30px 20px; /* Kartların iç boşluğunu azaltır */
    }
}