/* about-us.css */

/* 英雄图部分 */
.hero-section {
    background: url('/wp-content/themes/my-business-theme/images/about2024.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
/* 公司介绍部分 */
.about-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}

.about-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #007bff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
}

/* 凭什么和你们合作部分 */
.why-choose-us-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.why-choose-us-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}

.why-choose-us-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #007bff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.why-choose-us-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.table {
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 表格头部背景渐变色 */
.table th {
    background: linear-gradient(45deg, #007bff, #00c3ff);
    color: #fff;
    border: none;
}

/* 表格单元格背景渐变色 */
.table td {
    background: linear-gradient(45deg, #f3f4f5, #fff);
    border: none;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* 表格行悬停效果 */
.table tbody tr:hover {
    background-color: #e9ecef;
}
