/* 关于我们页面样式 */
.about-section {
    padding: 48px 0 64px;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

/* 左侧公司简介样式 */
.about-content {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    background-color: white;
}

.about-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 24px;
    color: white;
}

.overlay-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.overlay-text {
    margin: 0;
}

.atext-holder {
    padding: 24px;
}

.content-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.content-title:hover {
    color: #2563eb;
}

.highlight-text {
    color: #2563eb;
    font-weight: 600;
}

.content-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.tag {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag-finance {
    background-color: #eff6ff;
    color: #2563eb;
}

.tag-education {
    background-color: #ecfdf5;
    color: #10b981;
}

.tag-medical {
    background-color: #f5f3ff;
    color: #8b5cf6;
}

.tag-custom {
    background-color: #fff7ed;
    color: #ea580c;
}

/* 右侧企业文化样式 */
.choose-us-content {
    width: 100%;
}

.section-title {
    margin-bottom: 32px;
    text-align: center;
}

.main-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: bold;
    color: rgb(2, 2, 41);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin: 0 auto;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2563eb;
    border-radius: 9999px;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.philosophy-item {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

@media (min-width: 768px) {
    .philosophy-item {
        flex-direction: row;
        align-items: flex-start;
    }
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.philosophy-item-first .icon-container {
    background-color: #eff6ff;
    color: #2563eb;
}

.philosophy-item-first .icon-container:hover {
    background-color: #2563eb;
    color: white;
}

.philosophy-item-second .icon-container {
    background-color: #ecfdf5;
    color: #10b981;
}

.philosophy-item-second .icon-container:hover {
    background-color: #10b981;
    color: white;
}

.philosophy-item-third .icon-container {
    background-color: #f5f3ff;
    color: #8b5cf6;
}

.philosophy-item-third .icon-container:hover {
    background-color: #8b5cf6;
    color: white;
}

.text-content {
    flex: 1;
}

.item-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.item-description {
    color: #4b5563;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .about-section {
        padding: 32px 0 48px;
    }
    
    .col-md-6 {
        margin-bottom: 32px;
    }
    
    .icon-container {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}


/* 确保两列布局稳定 */
.about-section .row {
    display: flex;
    flex-wrap: wrap;
}

.about-left-column,
.about-right-column {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

/* 响应式设计 - 在较小屏幕上保持并排显示 */
@media (min-width: 768px) {
    .about-left-column,
    .about-right-column {
        width: 50%;
        float: left;
    }
}

/* 确保左侧内容不会导致右侧列下沉 */
.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.choose-us-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
