/* 关于我们页面专属样式 */
.about-hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('../images/about-bg.jpg') center/cover;
    color: #2c3e50;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    border: 2px solid #e8f4fc;
    border-radius: 15px;
}

.about-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.about-hero p {
    font-size: 1.5rem;
    color: #555;
}

.company-info {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #fafdfe;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f4fc;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.info-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

.info-card ul {
    padding-left: 0;
    list-style: none;
    color: #555;
}

.info-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:before {
    content: "•";
    color: #555;
    position: absolute;
    left: 0;
}

.team-section {
    padding: 1rem;
    text-align: center;
    background: #fafdfe;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2980b9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member span {
    color: #777;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .about-hero h2 {
        font-size: 1.8rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .company-info {
        padding: 1rem;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .team-section {
        padding: 1rem;
    }
    
    .team-section h3 {
        font-size: 1.6rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .about-hero h2 {
        font-size: 1.6rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .team-section h3 {
        font-size: 1.4rem;
    }
}