.team-section {
padding: 60px 20px;
background-color: #f9f9f9;
}
        
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-title {
            text-align: center;
            margin-bottom: 50px;
            color: #333;
            font-size: 2.2rem;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        .team-member-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .team-member-info {
            padding: 20px;
        }
        
        .team-member-name {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: #222;
        }
        
        .team-member-role {
            color: #ea0000;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .team-member-desc {
            color: #555;
            line-height: 1.6;
        }
        
        .contact-direct {
            text-align: center;
            padding: 40px 20px;
            background: #2c3e50;
            color: white;
            border-radius: 8px;
            margin: 40px;
        }
        
        .contact-direct h3 {
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .contact-direct p {
            max-width: 700px;
            margin: 0 auto 25px;
            line-height: 1.6;
        }
        
        .btn-contact {
            display: inline-block;
            background: #ea0000;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .btn-contact:hover {
            background: #d35400;
        }
        
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .team-title {
                font-size: 1.8rem;
            }
        }