.join-main {
    background: #FAFCFF;
    padding: 60px 0;
}

.join-header {
    text-align: center;
    margin-bottom: 60px;
}

.join-header h2 {
    font-size: 36px;
    color: #1D2129;
    font-weight: 600;
}

.join-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.join-image {
    flex: 1;
}

.join-image img {
    width: 599px;
    height: 599px;
    object-fit: cover;
}

.join-text {
    flex: 1;
}

.join-text p {
    font-size: 22px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-indent: 2em;
}

.join-subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.join-subtitle h2 {
    font-size: 36px;
    color: #1D2129;
    font-weight: 600;
    margin-bottom: 16px;
}

.join-subtitle p {
    font-size: 18px;
    color: #333;
}

.join-features {
    width: 1200px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.join-feature-item {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 35px 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.join-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-num {
    font-size: 100px;
    color: rgba(0,0,0,0.1);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* .join-feature-item:hover .feature-num {
    color: rgba(22, 119, 255, 0.1);
} */

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 40px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* .join-feature-item:hover .feature-content h3 {
    color: #1677FF;
} */

.feature-content p {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    text-align: left;
}



