/* Talent Page CSS */
.talent-container {
    padding: 50px 0;
    text-align: center;
}

.talent-header {
    margin-bottom: 60px;
}

.talent-header h3 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.talent-header p {
    font-size: 18px;
    color: #666;
}

.talent-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.talent-item {
    width: 220px;
    text-align: center;
}

.icon-box {
    width: 140px;
    height: 140px;
    background: #f4f6f9;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 60px;
    color: var(--point-color);
    transition: all 0.3s ease;
}

.talent-item:hover .icon-box {
    background: var(--point-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 91, 172, 0.2);
}

.talent-item:hover .icon-box i {
    color: #fff;
}

.text-box h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-box h4 span {
    display: block;
    font-size: 1rem;
    color: #cdcdcd;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
}

.text-box p {
    font-size: 1rem;
    color: #111;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .talent-container {
        padding: 30px 0;
    }

    .talent-header h3 {
        font-size: 28px;
    }

    .talent-header p {
        font-size: 15px;
    }

    .talent-list {
        gap: 40px;
    }

    .talent-item {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
    }

    .icon-box i {
        font-size: 36px;
    }

    .text-box {
        flex: 1;
    }

    .text-box h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .text-box h4 span {
        display: inline-block;
        margin-top: 0;
        margin-left: 5px;
        font-size: 13px;
    }

    .text-box p {
        font-size: 14px;
    }

    .text-box br {
        display: none;
    }
}