/* Ensures the image stays within the white card neatly */
.rounded-4 {
    border-radius: 2rem !important;
}

/* Responsive font scaling */
@media (max-width: 991px) {
    .display-4 {
        font-size: 2.5rem;
    }
}


/* start here privacy content  */

/* 1. Main Section Container */
.privacy-policy-section {
    padding: 60px 0;
    background-color: #f8fafc;
    /* Professional light background */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* 2. Optimized Card Design (3rd Type Feel) */
.privacy-policy-section .content-wrapper {
    background: #ffffff;
    max-width: 1000px;
    width: 90%;
    /* Side spacing for desktop */

    /* Sharp & Clean Borders */
    border-radius: 4px;
    /* Request: hlka radius */
    border: 1px solid #0082a4;
    /* Aapka brand blue color */

    /* Layered Shadow for depth */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Internal Spacing */
    padding: 45px;
    color: #334155;
    font-family: 'Inter', -apple-system, sans-serif;

    /* Core Alignment Fix: Start aur End same karne ke liye */
    text-align: justify;
    text-justify: inter-word;
}

/* 3. Typography Styling */
.privacy-policy-section .main-body {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.privacy-policy-section strong {
    color: #0f172a;
    font-weight: 700;
}

.privacy-policy-section .secondary-body {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* 4. Responsive Mobile View */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 30px 0;
    }

    .privacy-policy-section .content-wrapper {
        width: 94%;
        /* Mobile par left-right space thoda aur badhaya */
        padding: 30px 20px;

        /* Mobile par bhi alignment perfect rahegi */
        text-align: justify;
        text-justify: inter-word;
    }

    .privacy-policy-section .main-body {
        font-size: 0.95rem;
    }
}

/* end here privacy content  */

/* start here privacy section  */

/* --- Optimized UI Variables --- */
:root {
    --number-gradient: linear-gradient(135deg, #0781a3 0%, #062d60 100%);
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #475569;
    --border-color: #f1f5f9;
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -12px rgba(7, 129, 163, 0.12);
}

/* --- Section Container (Fixed Equal Height Logic) --- */
.privacy-section {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    /* 3 Columns on desktop */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Force all rows to have the same height based on the tallest card */
    grid-auto-rows: 1fr;
    gap: 25px;
    padding: 0 20px;
}

/* --- Equal Height Card Design --- */
.policy-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #062d60;
    display: flex;
    flex-direction: column;
    /* Stack header and content */
    height: 100%;
    /* Fill the grid cell height completely */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #0781a3;
}

/* --- CENTERED HEADER (Side-by-Side) --- */
.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    /* Space below heading */
    width: 100%;
    flex-shrink: 0;
    /* Header size stays fixed */
}

/* --- Gradient Number Box (Enhanced Size) --- */
.number-badge {
    background: var(--number-gradient);
    color: #ffffff;
    font-weight: 800;
    width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 45, 96, 0.15);
}

.policy-card h3 {
    color: #062d60;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* --- CONTENT AREA --- */
.card-content {
    flex-grow: 1;
    /* Content pushes to fill the card height */
    display: flex;
    flex-direction: column;
}

/* --- TEXT JUSTIFICATION (Perfect Align) --- */
.policy-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 15px 0;
    text-align: justify;
    /* Start aur End alignment fix */
    font-size: 0.94rem;
}

.arrow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arrow-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: justify;
    /* List justify alignment */
}

.arrow-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0781a3;
    font-weight: bold;
}

/* Responsive for Mobile */
@media (max-width: 480px) {
    .privacy-section {
        grid-auto-rows: auto;
        /* Mobile par height content ke hisaab se normal ho jaye */
    }

    .policy-card {
        padding: 25px;
    }
}

/* end here privacy section */