.hero-section h1 {
    color: var(--primary-black);
    font-size: 3vw;
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.profiles-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.profile {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 74, 153, 0.1);
}

.description h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 0 0 5px 0;
}

.description h4 {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.description p {
    color: var(--primary-black);
    line-height: 1.8;
}

.profile:nth-child(1) { animation-delay: 0.1s; }
.profile:nth-child(2) { animation-delay: 0.2s; }
.profile:nth-child(3) { animation-delay: 0.3s; }
.profile:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 480px) {
    .profile {
        flex: 0 1 100%;
    }
}