.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.header-content {
    flex: 1;
    padding-right: 30px;
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 0;
}

.header-image {
    width: 350px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.intro {
    margin-bottom: 30px;
}

.jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.job-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.job-info {
    margin: 24px auto;
    color: #555;
    font-size: 12pt;
}

.job-info:last-of-type {
    margin-top: 24px 0 0 0;
}

.job-info p {
    font-size: 11pt;
    line-height: 1.5;
}

.job-link {
    display: inline-block;
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

.job-link:hover {
    text-decoration: underline;
    color: #1a5276;
}

.job-link::after {
    content: " >";
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 5px;
    width: 70%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

.modal-title {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.job-details h3 {
    color: #2980b9;
    margin: 15px 0 10px;
}

.job-details ul {
    padding-left: 20px;
}

.job-details li {
    margin-bottom: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
    }

    .header-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .header-image {
        width: 100%;
        margin-top: 20px;
    }
}