/* About Us Page Styling */

.static-page-banner {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0,47,95,0.82), rgba(0,47,95,0.82)), url('../img/house1.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 140px 0;
    text-align: center;
    color: #fff;
}

.static-page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.banner-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 20px;
}

.about-card-clean {
    background: #ffffff;
    border: none;
    padding: 60px !important;
    line-height: 1.8;
    color: #334155;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-intro h2 {
    font-size: 2rem;
    font-weight: 800;
}

.section-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.text-gold {
    color: var(--accent-color);
}

.about-description p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #475569;
}

/* Softer Team Section for About Us */
.about-team-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.about-team-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 8px;
}

.about-team-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.about-team-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-team-card:hover {
    background: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-team-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 6px;
}

.about-team-card:hover .about-team-rank {
    background: var(--accent-color);
    color: #0f172a;
}

.about-team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}

.about-team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.about-team-role {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.about-team-listings {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 15px;
    background: rgba(197, 160, 89, 0.08);
    padding: 2px 10px;
    border-radius: 20px;
}

.about-team-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
}

.about-team-link:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .about-card-clean { padding: 30px !important; }
    .static-page-banner h1 { font-size: 2.5rem; }
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion Section */
.about-faq-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.about-faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 8px;
}

.about-faq-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.faq-item.active {
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    outline: none;
    transition: color 0.2s ease;
}

.faq-question-btn:hover {
    color: var(--accent-color);
}

.faq-item.active .faq-question-btn {
    color: var(--accent-color);
}

.faq-icon-arrow {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    color: #64748b;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    white-space: pre-line;
}

