/* ========================================
   鹿鹿教育官网 - 页面通用样式
   ======================================== */

/* 页面标题区域 */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 76px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 58, 26, 0.85) 0%, rgba(93, 58, 26, 0.7) 100%);
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: white;
}

.page-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.page-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--gold-primary);
}

.breadcrumb-item.active {
    color: var(--gold-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* 关于页面样式 */
.about-image-wrapper {
    position: relative;
    text-align: center;
    padding: 40px;
}

.about-logo-img {
    max-width: 80%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card i {
    font-size: 24px;
    color: var(--gold-primary);
}

.card-1 {
    top: 20%;
    right: 0;
}

.card-2 {
    bottom: 20%;
    left: 0;
}

.about-detail .lead {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-detail p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.about-mission {
    background: var(--cream);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--gold-primary);
}

.about-mission h4 {
    margin-bottom: 15px;
}

.mission-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-primary) !important;
    font-style: italic;
}

/* 时间线样式 */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-gradient);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    width: 100px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
    flex-shrink: 0;
    text-align: right;
    padding-right: 30px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-left: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--gold-primary);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-gray);
    margin: 0;
}

/* 优势卡片 */
.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.advantage-icon i {
    font-size: 32px;
    color: var(--brown-primary);
}

.advantage-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-gray);
    margin: 0;
}

/* 服务页面样式 */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--cream);
}

.service-detail-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    border-radius: 24px;
    padding: 40px;
}

.service-logo-large img {
    max-width: 80%;
    max-height: 250px;
    object-fit: contain;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-content .lead {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.service-features-list li i {
    color: var(--gold-primary);
    margin-right: 12px;
    margin-top: 5px;
}

/* 流程步骤 */
.process-section {
    background: var(--cream);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-primary);
    margin: 0 auto 20px;
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    font-size: 14px;
}

/* 课程页面样式 */
.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.course-header {
    background: var(--gold-gradient);
    padding: 25px 30px;
    color: var(--brown-primary);
}

.course-header h3 {
    margin: 0;
    font-size: 22px;
}

.course-age {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.course-body {
    padding: 30px;
}

.course-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-tag {
    background: var(--cream);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

/* 师资页面样式 */
.teacher-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.teacher-image {
    height: 240px;
    background: var(--cream);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.teacher-image i {
    font-size: 80px;
    color: var(--gold-primary);
    opacity: 0.5;
}

.teacher-info {
    padding: 25px;
}

.teacher-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.teacher-country {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.teacher-specialty {
    color: var(--text-gray);
    font-size: 14px;
}

/* 认证卡片 */
.cert-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    height: 100%;
}

.cert-icon {
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cert-icon i {
    font-size: 40px;
    color: var(--brown-primary);
}

.cert-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cert-card .cert-fullname {
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 20px;
}

.cert-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* 团队页面样式 */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.team-image {
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #D4A853 0%, #8B6914 100%);
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px;
}

.team-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-role {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-duty {
    background: var(--cream);
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-gray);
}

.team-duty strong {
    color: var(--gold-primary);
}

/* 联系页面样式 */
.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-info-card h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--brown-primary);
}

.contact-detail h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-form-card h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 168, 83, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* App页面样式 */
.app-showcase {
    background: var(--cream);
}

.app-mockup {
    text-align: center;
}

.app-mockup img {
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.app-features {
    margin-top: 30px;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.app-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.app-feature-icon i {
    font-size: 20px;
    color: var(--brown-primary);
}

.app-feature-text h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.app-feature-text p {
    color: var(--text-gray);
    margin: 0;
}

.qr-code-section {
    text-align: center;
}

.qr-code {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 200px;
    height: 200px;
}

.qr-code p {
    margin-top: 15px;
    color: var(--text-gray);
}

/* App品牌样式 */
.app-brand {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.app-name {
    font-size: 48px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--gold-primary);
}

.app-slogan {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.app-desc {
    font-size: 18px;
    color: var(--text-gray);
}

/* 外教头像样式 */
.teacher-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
}

/* 目标人群卡片 */
.target-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.target-icon i {
    font-size: 32px;
    color: var(--brown-primary);
}

.target-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.target-card p {
    color: var(--text-gray);
    margin: 0;
}

/* 海报展示 */
.poster-showcase img {
    max-width: 100%;
    border-radius: 20px;
}

/* 教师预览 */
.teacher-preview {
    text-align: center;
}

.teacher-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -15px;
}

.teacher-avatars img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: -15px;
    object-fit: cover;
}

.teacher-avatars img:first-child {
    margin-left: 0;
}

.more-teachers {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-primary);
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: -15px;
}

/* 服务按钮 */
.service-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================-- 新闻页面样式-- ========================================*/
.news-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.news-filter button {
    padding: 10px 25px;
    border-radius: 50px;
}

.news-filter button.active {
    background: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
}

.news-card-featured {
    height: 100%;
}

.news-card-featured .news-image {
    height: 300px;
}

.news-card-small {
    display: flex;
    height: 120px;
}

.news-card-small .news-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.news-card-small .news-content {
    flex: 1;
    padding: 15px 20px;
}

.news-card-small h4 {
    font-size: 16px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
}

.news-category {
    color: var(--gold-primary);
    font-weight: 600;
}

.news-date {
    color: var(--text-light);
}

.news-content h3,
.news-content h4 {
    margin-bottom: 12px;
}

.news-content h3 a,
.news-content h4 a {
    color: var(--text-dark);
}

.news-content h3 a:hover,
.news-content h4 a:hover {
    color: var(--gold-primary);
}

.news-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 新闻详情页 */
.news-detail-section {
    background: var(--ivory);
}

.news-article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.news-article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.news-article-header .news-category {
    display: inline-block;
    background: var(--gold-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.news-article-header h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.news-article-header .news-meta {
    font-size: 14px;
    color: var(--text-gray);
}

.news-article-header .news-meta span {
    margin-right: 20px;
}

.news-article-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.news-article-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
}

.news-article-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.news-article-content p {
    margin-bottom: 20px;
}

.news-article-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.news-article-content li {
    margin-bottom: 10px;
}

.news-article-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-share span {
    color: var(--text-gray);
}

.news-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.news-share a:hover {
    transform: translateY(-3px);
}

.share-weixin {
    background: #07C160;
}

.share-weibo {
    background: #E6162D;
}

.share-link {
    background: var(--gold-primary);
}

.news-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

/* 侧边栏 */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
    color: var(--text-dark);
}

.search-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 20px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--gold-primary);
    padding-left: 10px;
}

.category-list span {
    color: var(--text-light);
}

.popular-news {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-news li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-news li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-news a {
    display: block;
}

.popular-news-title {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.popular-news a:hover .popular-news-title {
    color: var(--gold-primary);
}

.popular-news-date {
    font-size: 13px;
    color: var(--text-light);
}

.sidebar-cta {
    background: var(--gold-gradient);
    text-align: center;
}

.sidebar-cta h4 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
    color: var(--brown-primary);
}

.sidebar-cta p {
    color: var(--brown-primary);
    margin-bottom: 20px;
}

/* 相关新闻 */
.related-news-section {
    background: var(--cream);
}

/* 分页 */
.pagination .page-link {
    color: var(--text-dark);
    border: none;
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--gold-primary);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--gold-primary);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-light);
}

/* 响应式设计 */
@media (max-width: 991px) {
    .page-header {
        height: 300px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .timeline-content::before {
        left: -40px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 28px;
    }
    
    .about-mission {
        padding: 20px;
    }
    
    .mission-text {
        font-size: 16px;
    }
    
    .cert-card {
        padding: 30px 20px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
}
