/* تنسيقات قسم السيرة الذاتية */
    .secretary-biography {
        padding: 70px 0;
        background-color: #f9f9f9;
    }

    .biography-header {
        margin-bottom: 50px;
        text-align: center;
    }

    .biography-title h1 {
        font-size: 32px;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .biography-title h2 {
        font-size: 24px;
        color: var(--primary-color);
        font-weight: 600;
    }

    .biography-timeline {
        position: relative;
        padding: 0 20px;
    }

    .biography-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 3px;
        background-color: var(--primary-color);
        margin-right: 21px;
    }

    .biography-item {
        position: relative;
        padding-right: 65px;
        margin-bottom: 50px;
    }

    .biography-item:last-child {
        margin-bottom: 0;
    }

    .bio-icon {
        position: absolute;
        right: 0;
        top: 0;
        width: 45px;
        height: 45px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 1;
    }

    .bio-content {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 25px;
        transition: all 0.3s ease;
    }

    .biography-item:hover .bio-content {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .bio-content h3 {
        color: var(--primary-color);
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .bio-date {
        display: inline-block;
        padding: 5px 15px;
        background-color: var(--light-gray);
        border-radius: 20px;
        color: var(--dark-color);
        font-size: 14px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .bio-text p {
        line-height: 1.8;
        color: #555;
        margin-bottom: 15px;
    }

    .bio-text p:last-child {
        margin-bottom: 0;
    }

    .biography-more {
        text-align: center;
        margin-top: 40px;
    }

    .biography-more .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .biography-more .btn i {
        transition: transform 0.3s ease;
    }

    .biography-more .btn:hover i {
        transform: translateX(-5px);
    }

    /* تنسيقات متجاوبة */
    @media screen and (max-width: 992px) {
        .biography-title h1 {
            font-size: 28px;
        }

        .biography-title h2 {
            font-size: 22px;
        }

        .bio-content h3 {
            font-size: 20px;
        }
    }

    @media screen and (max-width: 768px) {
        .biography-timeline::before {
            right: 20px;
        }

        .biography-item {
            padding-right: 55px;
        }

        .bio-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
            right: 10px;
        }
    }

    @media screen and (max-width: 576px) {
        .biography-title h1 {
            font-size: 24px;
        }

        .biography-title h2 {
            font-size: 18px;
        }

        .bio-content {
            padding: 20px 15px;
        }

        .bio-content h3 {
            font-size: 18px;
        }

        .bio-text p {
            font-size: 14px;
        }
    }