/* Portal Section Styles */
.faq-section {
    font-family: 'Inter', sans-serif;
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.faq-section .card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
}

.faq-section .card-header {
    padding: 1rem 1.5rem;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-section .card-header h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.faq-section .btn-link {
    font-weight: 500;
    color: #004AAD;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.faq-section .btn-link:hover {
    color: #003c8a;
}

.faq-section .btn-link i {
    transition: transform 0.3s ease;
}

.faq-section .btn-link.collapsed i {
    transform: rotate(-90deg);
}

.faq-section .card-body {
    padding: 1.5rem;
    background-color: #fff;
}

.faq-section .card-body p {
    color: #333;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Logo Grid Styles */
.logo-grid {
    font-family: 'Inter', sans-serif;
    padding: 3rem 0;
    background: white;
    min-height: calc(50vh - 60px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
}

.logo-item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item-large {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img, .logo-item-large img {
    max-height: 100px;
    object-fit: contain;
}

.logo-item-large img {
    max-height: 250px;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-section .card-header {
        padding: 0.75rem 1rem;
    }
    
    .faq-section .card-body {
        padding: 1rem;
    }
    
    .logo-grid {
        padding: 2rem 0;
    }
    
    .logo-item {
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .logo-item-large {
        height: 200px;
    }
    
    .logo-item img {
        max-height: 60px;
    }
    
    .logo-item-large img {
        max-height: 150px;
    }
} 