

        img {
            max-width: 100%;
            height: auto;
        }

        /* FAQ Hero Section */
        .faq-hero {
            background: url('https://www.raseedapp.com/wp-content/uploads/2026/04/bg.png');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            padding-top:120px;
        }

        /* Accordion Custom Styles */
        .accordion-item {
            border-bottom: 1px solid #e2e8f0;
            border-top: none;
            border-left: none;
            border-right: none;
            border-radius: 0;
        }

        .accordion-header {
            width: 100%;
            padding: 1.25rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            font-weight: 600;
            color: #334155;
            background-color: #f5fff954;
            transition: background-color 0.2s;
            border: none;
        }

        .accordion-header:hover {
            background-color: #f1f5f9;
        }

        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: #ffffff;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #475569;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 1.25rem 1rem;
        }

        .icon-svg {
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.2s;
        }
        
        .custom-link-hover:hover {
            color: #0d6efd !important;
        }
        
        
/* ===================== FLAGSHIP CARDS ===================== */
.ao-flagship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .ao-flagship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ao-flagship-grid {
        grid-template-columns: 1fr;
    }
}

.ao-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
}

.ao-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--ao-accent, #1e3370);
}

.ao-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ao-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background-color: var(--ao-accent-soft, rgba(30, 51, 112, 0.08));
    color: var(--ao-accent, #1e3370);
    overflow: hidden;
}

.ao-card-icon img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.ao-card-badge {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ao-accent, #1e3370);
    background-color: var(--ao-accent-soft, rgba(30, 51, 112, 0.08));
    padding: 4px 8px;
    border-radius: 6px;
}

.ao-card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 8px;
    text-transform: uppercase;

}

.ao-card:hover .ao-card-title {
    color: var(--ao-accent, #1e3370);
}

.ao-card-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ao-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background-color 0.2s, color 0.2s;
}

.ao-card:hover .ao-card-btn {
    background-color: var(--ao-accent, #1e3370);
    color: #ffffff;
}        