/* 首屏标题区域 */
.page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/statics/images/pattern.svg') repeat;
    opacity: 0.1;
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.page-title .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    min-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
}

/* 联系信息项对齐（保持主样式中的两列布局） */
.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-details .contact-item > .contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.contact-details .contact-item > .contact-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
    line-height: 1.4;
}

.contact-details .contact-item > .contact-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* 
.page-title .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
} */

/* 手机版适配：Banner 高度和文字风格参考项目服务页 */
@media (max-width: 768px) {
    .page-title {
        padding: 40px 0;
        min-height: auto !important;
    }
    .page-title h1 {
        font-size: 2rem;
    }
    .page-title .subtitle {
        font-size: 1rem;
        min-width: auto;
        max-width: 600px;
    }
}
