.about-header {
    position: relative;
    background-image: url('../img/rock-staar-NzIV4vOBA7s-unsplash.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.about-header .container {
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    /* 设置垂直排列 */
    align-items: center;
}

.about-header p {
    margin-top: 10px;
    /* 添加段落间距 */
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-header h1 {
    font-size: 6rem;
    margin: auto;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    max-width: 1200px;
    word-break: break-word;
}

main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

section {
    margin-bottom: 60px;
}

main .about-title {
    font-size: 26px;
    color: #005baa;
    margin-bottom: 16px;
    text-align: center;
}

main p,
main li {
    font-size: 16px;
    line-height: 1.8;
}

main ul {
    padding-left: 20px;
}

/* 职位列表样式 */
.job-list {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.job-posting {
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.job-posting:last-child {
    border-bottom: none;
}

.job-title {
    font-size: 18px;
    color: #005baa;
    margin: 0;
    padding: 15px 20px;
    background-color: #f5f5f5;
    position: relative;
}

.job-title::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.job-posting.expanded .job-title::after {
    transform: translateY(-50%) rotate(180deg);
}

.job-content {
    display: none;
    padding: 20px;
    background-color: white;
}

.job-content h4 {
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.job-content ul {
    margin-bottom: 15px;
}

.job-content li {
    margin-bottom: 5px;
    line-height: 1.6;
}

main a.button {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background-color: #005baa;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

main a.button:hover {
    background-color: #004080;
}

@media (max-width: 768px) {
    main .about-title {
        font-size: 2rem;
    }

    main .about-content {
        flex-direction: column;
    }

    main .about-header {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
        /* 适配移动端边距 */
    }
}