.team-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 140px 20px 100px;
}

.team-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-hero p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .team-hero {
        padding: 120px 20px 80px;
    }

    .team-hero h1 {
        font-size: 36px;
    }

    .team-hero p {
        font-size: 16px;
    }
}


/* ========== KARİYER BÖLÜMÜ ========== */
.career-section {
    background-color: #f8f9fa;
    padding: 100px 20px;
    text-align: center;
}

.career-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.career-content p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Kırmızı buton */
.career-btn {
    background-color: #e63946;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.career-btn:hover {
    background-color: #c92f3a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .career-content h2 {
        font-size: 24px;
    }

    .career-content p {
        font-size: 15px;
    }

    .career-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}