.advisors-section {
    position: relative;
    background-color: rgba(4, 104, 190, 0.8);
    padding: 80px 0 80px;
    overflow-x: clip;
    font-family: 'Metropolis', sans-serif;
}

.advisors-background-circle {
    display: none;
}

.advisors-section .container {
    position: relative;
    z-index: 1;
}

.advisors-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advisor-card {
    background-color: #E2E7EF;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(60px);
}

.advisor-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.advisor-card:nth-child(1) {
    animation-delay: 0s;
}

.advisor-card:nth-child(2) {
    animation-delay: 0.1s;
}

.advisor-card:nth-child(3) {
    animation-delay: 0.2s;
}

.advisor-card:nth-child(4) {
    animation-delay: 0.3s;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.advisor-photo-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.advisor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advisor-name {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: #000000B2;
}

.advisor-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #000000B2;
}

.advisor-logo {
    margin-top: 8px;
}

.advisor-logo .company-logo {
    height: 3.75rem;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advisors-title {
        font-size: 32px;
    }
    
    .advisors-background-circle {
        width: 1500px;
        height: 1500px;
    }
}

@media (max-width: 575.98px) {
    .advisors-section {
        padding: 40px 24px;
    }
    
    .advisors-title {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 40px;
    }
    
    .advisor-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .advisor-photo-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .advisor-name {
        font-size: 20px;
        font-weight: 600;
    }
    
    .advisor-title {
        font-size: 18px;
    }
    
    .advisor-title br {
        display: block;
    }
    
    .advisor-logo {
        display: flex;
        justify-content: center;
    }
    
    .advisor-logo .company-logo {
        height: 40px;
    }
    
    .advisors-background-circle {
        width: 1200px;
        height: 1200px;
    }
}

