        .about-section {
            min-height: 100vh;
            background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-deep) 50%, var(--color-navy) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        /* Background Decorations */
        .about-section__bg-decoration {
            position: absolute;
            font-size: 20rem;
            font-weight: 700;
            color: rgba(201, 162, 39, 0.03);
            pointer-events: none;
            user-select: none;
        }

        .about-section__bg-decoration--1 {
            top: 10%;
            left: 5%;
        }

        .about-section__bg-decoration--2 {
            bottom: 10%;
            right: 5%;
        }

        .about-section__container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .about-section__header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-section__title-wrapper {
            display: inline-block;
            position: relative;
            margin-bottom: 25px;
        }

        .about-section__title {
            font-family: 'Noto Kufi Arabic', var(--font-ar);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-white);
            margin: 0;
            padding: 15px 50px;
            border: 2px solid var(--color-gold);
            position: relative;
        }

        .about-section__title span {
            color: var(--color-gold);
        }

        .about-section__description {
            font-family: var(--font-ar);
            font-size: 1.1rem;
            color: #a0a0a0;
            line-height: 1.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Items */
        .about-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .about-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .about-item:hover {
            border-color: rgba(201, 162, 39, 0.4);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        /* Item Header */
        .about-item__header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px 30px;
            background: rgba(201, 162, 39, 0.05);
        }

        .about-item__number {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-ar);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-navy);
            flex-shrink: 0;
        }

        .about-item__title {
            font-family: 'Noto Kufi Arabic', var(--font-ar);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-white);
            margin: 0;
            line-height: 1.5;
        }

        /* Item Content */
        .about-item__content {
            padding: 0 30px 30px;
        }

        .about-item__divider {
            height: 1px;
            background: linear-gradient(to left, transparent, var(--overlay-gold-30), transparent);
            margin-bottom: 25px;
        }

        .about-item__text {
            font-family: var(--font-ar);
            font-size: 1.05rem;
            color: #b0b0b0;
            line-height: 2;
            margin: 0;
            text-align: justify;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 60px 0;
            }

            .about-section__title {
                font-size: 2rem;
                padding: 12px 30px;
            }

            .about-section__description {
                font-size: 1rem;
            }

            .about-item__header {
                padding: 20px;
                gap: 15px;
            }

            .about-item__number {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .about-item__title {
                font-size: 1.05rem;
            }

            .about-item__content {
                padding: 0 20px 25px;
            }

            .about-item__text {
                font-size: 1rem;
            }

            .about-section__bg-decoration {
                font-size: 12rem;
            }
        }
