 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #3E67A3;
            --secondary-color: #03A180;
            --accent-color: #BBE7F4;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
            --text-color: #334155;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 10px;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1;
            max-width: 1200px;
            width: 100%;
            margin: 40px auto;
            padding: 0 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .page-header h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .page-header h1 i {
            color: var(--secondary-color);
            margin-left: 10px;
        }

        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .page-header p {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 25px auto 0;
        }

        .policies-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 30px;
        }

        .policy-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(62, 103, 163, 0.1);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(62, 103, 163, 0.15);
        }

        .policy-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0.05;
            border-radius: 0 0 0 100px;
        }

        .policy-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .policy-title i {
            color: var(--secondary-color);
            font-size: 2rem;
        }

        .policy-section {
            margin-bottom: 25px;
        }

        .policy-section h3 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .policy-section h3 i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .policy-section p {
            color: var(--text-color);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .policy-list {
            list-style: none;
            padding: 0;
        }

        .policy-list li {
            margin-bottom: 15px;
            padding-right: 25px;
            position: relative;
            line-height: 1.8;
        }

        .policy-list li::before {
            content: '•';
            color: var(--secondary-color);
            font-size: 1.5rem;
            position: absolute;
            right: 0;
            top: -5px;
        }

        .policy-list li strong {
            color: var(--primary-color);
            font-weight: 700;
        }

        .numbered-list {
            list-style: none;
            counter-reset: policy-counter;
            padding: 0;
        }

        .numbered-list li {
            counter-increment: policy-counter;
            margin-bottom: 15px;
            padding-right: 35px;
            position: relative;
            line-height: 1.8;
        }

        .numbered-list li::before {
            content: counter(policy-counter) ".";
            color: var(--secondary-color);
            font-weight: 700;
            position: absolute;
            right: 0;
            top: 0;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(62, 103, 163, 0.05), rgba(3, 161, 128, 0.05));
            border-right: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .fatwa-reference {
            background: white;
            border: 1px solid var(--accent-color);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            font-size: 0.95rem;
        }

        .fatwa-reference strong {
            color: var(--primary-color);
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            margin: 40px auto 0;
            box-shadow: 0 4px 15px rgba(62, 103, 163, 0.3);
            width: fit-content;
        }

        .back-btn:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(3, 161, 128, 0.4);
        }

        .back-btn i {
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .main-content {
                margin: 30px auto;
                padding: 0 15px;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .policy-card {
                padding: 20px;
            }

            .policy-title {
                font-size: 1.5rem;
            }

            .policy-section h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.8rem;
            }

            .policy-title {
                font-size: 1.3rem;
            }

            .policy-list li,
            .numbered-list li {
                font-size: 0.95rem;
            }
        }