.team-detail-section {
        padding: 80px 0 60px;
    }
    .team-detail-photo {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        position: sticky;
        top: 100px;
    }
    .team-detail-photo img {
        width: 100%;
        height: auto;
        display: block;
    }
    .team-detail-name {
        font-size: 34px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 5px;
    }
    .team-detail-title {
        font-size: 17px;
        color: #A249ED;
        font-weight: 600;
        margin-bottom: 25px;
        display: inline-block;
        background: rgba(162,73,237,0.08);
        padding: 5px 16px;
        border-radius: 20px;
    }
    .td-info-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 25px;
        transition: all 0.3s;
    }
    .td-info-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        border-color: rgba(162,73,237,0.15);
    }
    .td-info-card h5 {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f5f5f5;
    }
    .td-info-card h5 i {
        color: #A249ED;
        margin-right: 8px;
    }
    .td-info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px dashed #f0f0f0;
    }
    .td-info-row:last-child {
        border-bottom: none;
    }
    .td-info-row .label {
        font-size: 14px;
        color: #888;
        font-weight: 500;
    }
    .td-info-row .value {
        font-size: 14px;
        color: #1a1a2e;
        font-weight: 600;
        text-align: right;
    }
    .td-social-links {
        display: flex;
        gap: 10px;
        margin-top: 5px;
    }
    .td-social-links a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s;
    }
    .td-social-links a:hover {
        background: #A249ED;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(162,73,237,0.3);
    }
    .td-skill-item {
        margin-bottom: 18px;
    }
    .td-skill-item .skill-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    .td-skill-item .skill-name {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a2e;
    }
    .td-skill-item .skill-percent {
        font-size: 14px;
        font-weight: 700;
        color: #A249ED;
    }
    .td-skill-bar {
        height: 8px;
        background: #f0f0f0;
        border-radius: 10px;
        overflow: hidden;
    }
    .td-skill-bar .skill-fill {
        height: 100%;
        border-radius: 10px;
        background: linear-gradient(90deg, #A249ED, #6135D7);
        transition: width 1.5s ease-in-out;
    }
    .td-karriyer-section {
        padding: 0 0 80px;
    }
    .td-karriyer-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    }
    .td-karriyer-card h3 {
        font-size: 26px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #A249ED;
        display: inline-block;
    }
    .td-karriyer-card p {
        font-size: 15px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
    }
    .td-meslek-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #1e0c45, #724ebf);
        color: #fff;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
    }
