.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 64px 0;
}

.content-section {
    margin-bottom: 64px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: bold;
    position: relative;
    padding-bottom: 16px;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.content-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.feature-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: bold;
}

.feature-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-list {
    margin: 32px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.service-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    margin-right: 24px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: bold;
}

.service-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 48px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    transition: all var(--transition-fast);
}

.process-step:hover .step-icon {
    background-color: var(--primary-color);
    color: white;
}

.step-title {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-medium);
}

.case-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 32px;
}

.case-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.case-card:hover .case-img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.case-card:hover .case-overlay {
    transform: translateY(0);
}

.case-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.case-desc {
    font-size: 14px;
    opacity: 0.9;
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-color);
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 8px;
}

.news-card {
    display: flex;
    margin-bottom: 24px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 16px;
    flex-shrink: 0;
}

.faq-title {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: bold;
    transition: color var(--transition-fast);
}

.faq-item:hover .faq-title {
    color: var(--primary-color);
}

.faq-answer {
    margin-top: 16px;
    padding-left: 48px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-answer a:hover {
    text-decoration: none;
}

.news-img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: bold;
    transition: color var(--transition-fast);
}

.news-card:hover .news-title {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.team-card {
    text-align: center;
    margin-bottom: 32px;
}

.team-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: bold;
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.team-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-label .required {
    color: #ff4d4f;
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 131, 255, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.pagination-item {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    padding: 0 12px;
    font-size: 14px;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.pagination-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 48px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-img {
        width: 100%;
        height: 200px;
    }
    
    .case-img {
        height: 200px;
    }
}
