.team-redesign-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
    max-width: 900px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #ffc02c;
}

.team-card .card-icon {
    font-size: 40px;
    color: #ffc02c;
    margin-bottom: 25px;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.team-card .hover-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(255, 192, 44, 0.05);
    transition: all 0.4s ease;
    pointer-events: none;
}

.team-card:hover .hover-decoration {
    color: rgba(255, 192, 44, 0.1);
    transform: rotate(-10deg) scale(1.1);
}

@media (max-width: 768px) {
    .team-redesign-section {
        padding: 60px 0;
    }
    .about-intro-text {
        font-size: 1.1rem;
    }
}
