@font-face {
            font-family: "Tajawal";
            src: url("../fonts/Tajawal-Regular.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: "Tajawal";
            src: url("../fonts/Tajawal-Bold.ttf") format("truetype");
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: "Tajawal";
            src: url("../fonts/Tajawal-ExtraBold.ttf") format("truetype");
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --ink: #173744;
            --muted: #425c68;
            --bg: #fff6f6;
            --surface: #ffffff;
            --soft: #e7f4f3;
            --line: #d8eeee;
            --primary: #db1a1a;
            --primary-dark: #a81212;
            --accent: #8cc7c4;
            --accent-dark: #2c687b;
            --danger: #db1a1a;
            --success: #2c687b;
            --shadow: 0 18px 45px rgba(44, 104, 123, 0.12);
            --radius: 8px;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Tajawal", Arial, sans-serif;
            color: var(--ink);
            background:
                linear-gradient(180deg, #fff6f6 0%, #f3fbfb 48%, #fff6f6 100%);
            font-size: 17px;
            line-height: 1.85;
        }

        a {
            color: inherit;
        }

        img {
            display: block;
            max-width: 100%;
        }

        .container {
            width: min(var(--max), calc(100% - 32px));
            margin-inline: auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 246, 246, 0.94);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(16px);
        }

        .header-inner {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            min-width: 0;
        }

        .brand-logo {
            width: 52px;
            height: 52px;
            object-fit: contain;
            flex: 0 0 auto;
        }

        .brand-name {
            display: block;
            color: var(--primary);
            font-size: 1.45rem;
            font-weight: 800;
            line-height: 1.1;
        }

        .brand-note {
            display: block;
            color: #385564;
            font-size: 0.94rem;
            line-height: 1.4;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav a,
        .btn,
        .btn-outline,
        .btn-light {
            min-height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius);
            padding: 0 16px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 700;
            border: 1px solid transparent;
            transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
        }

        .lucide-icon {
            width: 1.15em;
            height: 1.15em;
            flex: 0 0 auto;
            stroke-width: 2.1;
        }

        .nav a {
            color: var(--accent-dark);
        }

        .nav a:hover,
        .nav .is-active {
            background: var(--primary);
            color: #fff;
        }

        .btn {
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-color: var(--primary);
            box-shadow: 0 12px 26px rgba(219, 26, 26, 0.22);
        }

        .btn:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-subscribe {
            color: #fff;
            background: linear-gradient(135deg, var(--accent-dark), #0d8f82);
            border-color: var(--accent-dark);
            box-shadow: 0 12px 26px rgba(44, 104, 123, 0.22);
        }

        .btn-subscribe:hover {
            background: #0d706c;
            border-color: #0d706c;
        }

        .btn-outline,
        .btn-light {
            color: var(--accent-dark);
            background: #fff;
            border-color: var(--accent);
        }

        .btn-outline:hover,
        .btn-light:hover {
            color: #fff;
            border-color: var(--accent-dark);
            background: var(--accent-dark);
        }

        .btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .section {
            padding: 56px 0;
        }

        .section-compact {
            padding: 34px 0 56px;
        }

        .hero {
            padding: 42px 0 28px;
            background:
                linear-gradient(135deg, rgba(255, 246, 246, 0.9), rgba(140, 199, 196, 0.68)),
                var(--website-hero-image) center/cover no-repeat;
            border-bottom: 1px solid var(--line);
        }

        .hero-panel {
            max-width: 720px;
            padding: 30px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(140, 199, 196, 0.7);
            box-shadow: var(--shadow);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: var(--accent-dark);
            font-weight: 800;
        }

        .eyebrow::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary);
        }

        .hero-title,
        .section-title,
        .page-title {
            margin: 0;
            font-weight: 800;
            line-height: 1.35;
            color: var(--ink);
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 4rem);
        }

        .section-title,
        .page-title {
            font-size: clamp(1.65rem, 3vw, 2.45rem);
        }

        .lead,
        .section-text {
            margin: 12px 0 0;
            max-width: 760px;
            color: var(--muted);
            font-size: 1.14rem;
            font-weight: 500;
        }

        .quick-actions {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-top: 22px;
        }

        .quick-card,
        .card,
        .form-card,
        .message-card {
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
        }

        .quick-card {
            padding: 18px;
            text-decoration: none;
            border-top: 4px solid var(--accent);
        }

        .quick-card strong {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-dark);
            font-size: 1.08rem;
        }

        .quick-card span {
            display: block;
            margin-top: 4px;
            color: var(--muted);
            font-size: 1rem;
            font-weight: 500;
        }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 22px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .card {
            overflow: hidden;
        }

        .campaign-cover {
            min-height: 156px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background:
                linear-gradient(135deg, rgba(219, 26, 26, 0.93), rgba(44, 104, 123, 0.92)),
                var(--website-campaign-image) center/cover no-repeat;
            color: #fff;
        }

        .badge {
            width: fit-content;
            border-radius: var(--radius);
            padding: 5px 10px;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.22);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .campaign-amount {
            font-size: 1.35rem;
            font-weight: 800;
            line-height: 1.4;
        }

        .card-body {
            padding: 20px;
        }

        .card-title {
            margin: 0;
            color: var(--ink);
            font-size: 1.28rem;
            font-weight: 800;
            line-height: 1.4;
        }

        .meta-list {
            display: grid;
            gap: 8px;
            margin: 14px 0 18px;
            color: var(--muted);
            font-size: 1.02rem;
        }

        .meta-item {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #edf1ed;
        }

        .meta-item strong {
            color: var(--accent-dark);
        }

        .meta-link {
            color: var(--accent-dark);
            font-weight: 800;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .meta-link:hover {
            color: var(--primary-dark);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .step {
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: #fff;
            border-top: 4px solid var(--primary);
        }

        .step-number {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            margin-bottom: 10px;
            border-radius: 50%;
            color: #fff;
            background: var(--accent-dark);
            font-weight: 800;
        }

        .step h3 {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.08rem;
        }

        .step p {
            margin: 6px 0 0;
            color: var(--muted);
            font-size: 1.02rem;
            font-weight: 500;
        }

        .two-column {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 420px;
            gap: 22px;
            align-items: start;
        }

        .form-card,
        .message-card {
            padding: 24px;
        }

        .form-grid,
        .lookup-form {
            display: grid;
            gap: 16px;
            margin-top: 20px;
        }

        .field {
            display: grid;
            gap: 7px;
        }

        .field label {
            color: var(--accent-dark);
            font-weight: 800;
        }

        .field input,
        .subscription-input,
        .lookup-input {
            width: 100%;
            min-height: 52px;
            padding: 0 14px;
            border-radius: var(--radius);
            border: 1px solid #cfdcd2;
            background: #fff;
            color: var(--ink);
            font: inherit;
            font-size: 1.03rem;
            outline: none;
        }

        .field input:focus,
        .subscription-input:focus,
        .lookup-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(219, 26, 26, 0.1);
        }

        .submit-btn {
            width: 100%;
            border: 0;
            cursor: pointer;
            font: inherit;
        }

        .field-errors,
        .subscription-field-errors,
        .lookup-errors {
            margin: 0;
            padding: 0;
            color: var(--danger);
            list-style: none;
            font-size: 0.92rem;
        }

        .feedback,
        .lookup-note {
            margin-top: 16px;
            padding: 12px 14px;
            border-radius: var(--radius);
            border: 1px solid transparent;
            font-weight: 700;
        }

        .feedback.success,
        .lookup-note {
            color: var(--success);
            background: #e7f4f3;
            border-color: #b9dddb;
        }

        .feedback.error,
        .lookup-note.empty {
            color: var(--danger);
            background: #fff1ef;
            border-color: #ffd0ca;
        }

        .table-panel {
            overflow: hidden;
        }

        .table-header {
            padding: 18px 20px;
            border-bottom: 1px solid var(--line);
        }

        .table-header h2 {
            margin: 0;
            font-size: 1.25rem;
        }

        .table-header p {
            margin: 6px 0 0;
            color: var(--muted);
            font-weight: 700;
        }

        .table-wrap {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 620px;
        }

        th,
        td {
            padding: 14px 16px;
            text-align: right;
            border-bottom: 1px solid #edf1ed;
        }

        th {
            color: var(--accent-dark);
            background: #e7f4f3;
            font-weight: 800;
        }

        td {
            color: #314a56;
            font-size: 1.02rem;
        }

        .empty-state {
            padding: 28px;
            text-align: center;
            color: var(--muted);
        }

        .success-icon {
            width: 74px;
            height: 74px;
            display: grid;
            place-items: center;
            margin: 0 auto 16px;
            border-radius: 50%;
            color: #fff;
            background: var(--accent-dark);
            font-size: 2rem;
            font-weight: 800;
        }

        .success-icon .lucide-icon {
            width: 34px;
            height: 34px;
        }

        .message-card {
            max-width: 780px;
            margin-inline: auto;
            text-align: center;
        }

        .message-list {
            display: grid;
            gap: 10px;
            margin: 20px 0 0;
            padding: 0;
            list-style: none;
            text-align: right;
        }

        .message-list li {
            padding: 12px 14px;
            border-radius: var(--radius);
            background: #fff6f6;
            color: var(--accent-dark);
            border: 1px solid #ffdcdc;
        }

        .site-footer {
            padding: 32px 0;
            border-top: 1px solid var(--line);
            background: #fff;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            color: var(--muted);
            font-weight: 700;
        }

        .footer-logo {
            width: auto;
            height: 34px;
            max-width: 150px;
            object-fit: contain;
        }

        .footer-logo-link {
            display: inline-flex;
            align-items: center;
            border-radius: var(--radius);
            padding: 4px;
            transition: background 0.18s ease, transform 0.18s ease;
        }

        .footer-logo-link:hover,
        .footer-logo-link:focus-visible {
            background: #fff6f6;
            transform: translateY(-1px);
            outline: none;
        }

        @media (max-width: 980px) {
            .header-inner,
            .section-head,
            .footer-inner {
                align-items: stretch;
                flex-direction: column;
            }

            .nav {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 4px;
            }

            .cards-grid,
            .steps,
            .quick-actions,
            .two-column {
                grid-template-columns: 1fr;
            }

            .header-inner {
                padding: 12px 0;
            }
        }

        @media (max-width: 560px) {
            .container {
                width: min(var(--max), calc(100% - 20px));
            }

            .hero {
                padding-top: 24px;
            }

            .hero-panel,
            .form-card,
            .message-card,
            .card-body {
                padding: 18px;
            }

            .btn-row .btn,
            .btn-row .btn-outline,
            .btn-row .btn-light {
                width: 100%;
            }

            .brand-note {
                display: none;
            }
        }
