/* Main Wrapper */
.blu-privacy-wrapper {
    background-color: #f9fafb; /* bg-gray-50 */
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
    color: #374151; /* text-gray-700 */
}

/* Container */
.blu-privacy-container {
    max-width: 896px; /* max-w-4xl */
    margin: 0 auto;
    padding: 64px 16px; /* py-16 px-4 */
}

.blu-privacy-prose {
    width: 100%;
}

/* Sections */
.blu-privacy-section {
    margin-bottom: 48px; /* mb-12 */
}

/* Headings */
.blu-privacy-heading {
    font-size: 24px; /* text-2xl */
    line-height: 1.3;
    font-weight: 600; /* font-semibold */
    color: #111827; /* text-gray-900 */
    margin-bottom: 24px; /* mb-6 */
}

@media (min-width: 768px) {
    .blu-privacy-heading {
        font-size: 30px; /* md:text-3xl */
    }
}

.blu-privacy-subheading {
    font-size: 20px; /* text-xl */
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

/* Cards */
.blu-privacy-card {
    background-color: #ffffff;
    border-radius: 8px; /* rounded-lg */
    padding: 32px; /* p-8 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    border: 1px solid #e5e7eb; /* border */
    margin-bottom: 24px;
}

/* Text */
.blu-privacy-text {
    color: #374151; /* text-gray-700 */
    line-height: 1.625; /* leading-relaxed */
    margin: 0;
}

.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* Stack Layout (Vertical Spacing) */
.blu-privacy-stack {
    display: flex;
    flex-direction: column;
    gap: 16px; /* space-y-4 */
}

/* Notice Box */
.blu-privacy-notice {
    margin-top: 24px; /* mt-6 */
    padding: 16px; /* p-4 */
    background-color: #eff6ff; /* bg-blue-50 */
    border: 1px solid #bfdbfe; /* border-blue-200 */
    border-radius: 8px; /* rounded-lg */
}

.blu-privacy-notice-text {
    color: #374151;
    font-weight: 500; /* font-medium */
    line-height: 1.625;
    margin: 0;
}

/* Grid Layout for Items */
.blu-privacy-grid {
    display: grid;
    gap: 24px; /* gap-6 */
}

@media (min-width: 768px) {
    /* For section 4, grid gap increases */
    .blu-privacy-section:last-child .blu-privacy-grid {
        gap: 32px; /* gap-8 */
    }
}

/* Item Styling (Border Left colors) */
.blu-privacy-item {
    border-left: 4px solid;
    padding-left: 24px; /* pl-6 */
}

/* Border Colors */
.border-blue { border-left-color: #3b82f6; /* blue-500 */ }
.border-green { border-left-color: #22c55e; /* green-500 */ }
.border-purple { border-left-color: #a855f7; /* purple-500 */ }
.border-red { border-left-color: #ef4444; /* red-500 */ }
.border-orange { border-left-color: #f97316; /* orange-500 */ }

/* RTL Support */
:lang(ar) .blu-privacy-wrapper {
    direction: rtl;
    text-align: right;
}

:lang(ar) .blu-privacy-item {
    border-left: none;
    border-right: 4px solid;
    padding-left: 0;
    padding-right: 24px;
}

:lang(ar) .border-blue { border-right-color: #3b82f6; }
:lang(ar) .border-green { border-right-color: #22c55e; }
:lang(ar) .border-purple { border-right-color: #a855f7; }
:lang(ar) .border-red { border-right-color: #ef4444; }
:lang(ar) .border-orange { border-right-color: #f97316; }