/* ========================================================
   MODERN POLICY & FAQ PAGES STYLING (ZERO CONFLICT)
   ======================================================== */

/* 1. Common Hero Banner for All Policy Pages */
.faq-banner {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 45px 20px !important;
    margin-bottom: 35px !important;
}

.faq-banner h1.display-4 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
}

/* 2. Content Card Wrapper (Clean White Reading Card) */
.policy-content,
.faq-content {
    background-color: #f8fafc !important;
    padding-bottom: 60px !important;
}

.policy-content .row,
.faq-content .container {
    max-width: 960px !important;
    margin: 0 auto !important;
}

/* Policy Content Body Typography */
.policy-content .col-lg-12 {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    color: #334155 !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

/* Section Headings */
.policy-content h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 32px !important;
    margin-bottom: 14px !important;
    position: relative !important;
    padding-left: 14px !important;
    border-left: 4px solid #2563eb !important; /* Tech Blue Accent */
}

.policy-content p {
    margin-bottom: 16px !important;
}

.policy-content a {
    color: #2563eb !important;
    text-decoration: underline !important;
}

/* Bullet Points & Lists */
.policy-content ul {
    padding-left: 20px !important;
    margin-bottom: 20px !important;
}

.policy-content ul li {
    margin-bottom: 8px !important;
    color: #334155 !important;
}

/* Modern "Need Help" Callout Box */
.policy-content .bg-light.border-start {
    background: #eff6ff !important; /* Soft Tech Blue Background */
    border-left: 4px solid #2563eb !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 24px !important;
    margin-top: 35px !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

.policy-content .bg-light.border-start h5 {
    color: #0f172a !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.policy-content .bg-light.border-start p {
    color: #475569 !important;
    font-size: 14px !important;
}

/* 3. Modern FAQ Accordion Styling */
.faq-content h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 35px !important;
    margin-bottom: 18px !important;
}

.faq-content .accordion-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
}

/* Accordion Question Button */
.faq-content .accordion-button {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

/* Open/Active Accordion Item */
.faq-content .accordion-button:not(.collapsed) {
    background: #eff6ff !important; /* Soft Blue */
    color: #2563eb !important;      /* Tech Blue */
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Accordion Answer Body */
.faq-content .accordion-body {
    padding: 20px 22px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    background: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content .col-lg-12 {
        padding: 25px 20px !important;
    }
    .faq-banner h1.display-4 {
        font-size: 26px !important;
    }
}


/* ========================================================
   ABOUT US PAGE STYLING
   ======================================================== */

.it-about-page-wrapper {
    background-color: #f8fafc;
}

/* 1. Hero Section */
.about-hero {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 50px 20px;
}

.about-hero .badge-tech,
.why-choose-section .badge-tech {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero .hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.about-hero .hero-subtitle {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.6;
}

/* 2. Stats Cards */
.stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05) !important;
}

.stat-number {
    font-size: 28px;
    color: #2563eb !important;
}

/* 3. Feature Box */
.feature-box {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-box:hover {
    transform: translateY(-4px);
    border-color: #2563eb !important;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* 4. Specialization Pills */
.part-item-pill {
    transition: all 0.2s ease;
}
.part-item-pill:hover {
    border-color: #2563eb !important;
    transform: translateX(4px);
}