/* 留言预约页专属样式 */
.page-banner {
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?w=1920&h=320&fit=crop') center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
}
.page-banner .container {
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin: 40px 0;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}
.sidebar-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.sidebar-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.apply-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: #fff;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
}
.apply-form select:focus {
    border-color: var(--primary-color);
}

.notice-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.notice-content p {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.notice-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}