/* =============================================== */
/* =============  关于页面 (About Page) 样式 ============= */
/* =============================================== */

/* --- 公司简介区域 --- */
.company-profile {
    padding: 80px 20px;
    background-color: #fff;
}

.profile-grid {
    display: grid;
    /* 在大屏幕上显示2列 */
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; /* 卡片之间的间距 */
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    position: relative;
    height: 300px; /* 固定卡片高度 */
    border-radius: 10px;
    overflow: hidden; /* 隐藏超出圆角的背景图部分 */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: flex-end; /* 内容默认靠下对齐 */
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: scale(1.03); /* 悬停时轻微放大 */
}

/* 添加深色遮罩层，让文字更清晰 */
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2; /* 确保内容在遮罩层之上 */
}

.card-content .card-icon {
    width: 48px; /* 根据您的图标大小调整 */
    height: 48px;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    color: #0fffff;
    font-family: 'Microsoft JhengHei'
}

.card-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    font-family: 'Microsoft JhengHei'
}


/* --- 服务内容文本区域 --- */
.service-content {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Microsoft JhengHei'
}

.content-container p {
    margin-bottom: 1.5em; /* 段落间距 */
}

.content-container strong {
    color: #333;
    font-size: 1.2rem;
    margin-right: 10px;
}

.content-container .intro {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.content-container .outro {
    margin-top: 30px;
    color: #000000;
    font-weight: 700;
}


/* --- 响应式设计：小屏幕上变为1列 --- */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr; /* 在小屏幕上，卡片变为单列布局 */
    }

    .profile-card {
        height: 250px; /* 小屏幕上可以矮一点 */
    }

    .card-content h3 {
        font-size: 1.5rem;
    }
}