    :root {
        --primary-matiko: #1e4a3b;
        --primary-dark-matiko: #0b2b26;
        --accent-matiko: #f9c74f;
        --border-radius-matiko: 16px;
        --box-shadow-matiko: 0 10px 30px rgba(0, 0, 0, 0.05);
        --transition-matiko: all 0.3s ease;
    }

    .about-page-bg {
        position: relative;
        background: linear-gradient(135deg, #f4f7f6 0%, #e9f0ee 100%);
        min-height: 100vh;
        z-index: 1;
    }

    .about-page-bg::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 400px;
        background: linear-gradient(135deg, var(--primary-matiko), var(--primary-dark-matiko));
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
        z-index: -1;
    }

    .about-page-wrapper {
        direction: rtl;
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .about-page-wrapper header.about-header {
        text-align: center;
        padding: 50px 20px;
        margin-bottom: 40px;
        color: white;
        position: relative;
        border-radius: var(--border-radius-matiko);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--box-shadow-matiko);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .about-page-wrapper .logo-container {
        margin-bottom: 20px;
    }

    .about-page-wrapper .logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .about-page-wrapper .logo i {
        font-size: 46px;
        color: var(--accent-matiko);
    }

    .about-page-wrapper h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .about-page-wrapper .subtitle {
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
        color: #f9c74f;
    }

    .about-page-wrapper .about-card {
        background: white;
        border-radius: var(--border-radius-matiko);
        box-shadow: var(--box-shadow-matiko);
        overflow: hidden;
        margin-bottom: 40px;
        transition: var(--transition-matiko);
        border: 1px solid rgba(30, 74, 59, 0.08);
    }

    .about-page-wrapper .about-section {
        padding: 40px;
        position: relative;
    }

    .about-page-wrapper .section-icon {
        position: absolute;
        top: 40px;
        left: 40px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-matiko), var(--primary-dark-matiko));
        color: white;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 5px 15px rgba(30, 74, 59, 0.2);
    }

    .about-page-wrapper .section-content {
        margin-left: 80px;
    }

    .about-page-wrapper h2 {
        font-size: 1.8rem;
        color: var(--primary-dark-matiko);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .about-page-wrapper h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-matiko), var(--primary-dark-matiko));
        border-radius: 2px;
    }

    .about-page-wrapper p {
        margin-bottom: 20px;
        color: #212529;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .about-page-wrapper ul.about-list {
        margin: 20px 0;
        padding-right: 20px;
    }

    .about-page-wrapper ul.about-list li {
        margin-bottom: 15px;
        position: relative;
        padding-right: 25px;
        list-style: none !important;
        color: #212529;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-page-wrapper ul.about-list li::before {
        content: '';
        position: absolute;
        top: 8px;
        right: 0;
        width: 10px;
        height: 10px;
        background: var(--primary-matiko);
        border-radius: 50%;
    }

    .about-page-wrapper .highlight {
        background: #e9f5f2;
        padding: 25px;
        border-radius: var(--border-radius-matiko);
        border-right: 4px solid var(--primary-matiko);
        margin: 25px 0;
    }

    .about-page-wrapper .highlight h3 {
        color: var(--primary-dark-matiko);
        font-size: 1.3rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .about-page-wrapper .about-section { padding: 30px 20px; }
        .about-page-wrapper .section-icon { position: relative; top: 0; left: 0; margin-bottom: 25px; }
        .about-page-wrapper .section-content { margin-left: 0; }
        .about-page-wrapper h1 { font-size: 2.1rem; }
        .about-page-wrapper h2 { font-size: 1.6rem; }
        .about-page-wrapper .logo { width: 80px; height: 80px; }
        .about-page-wrapper .logo i { font-size: 36px; }
    }

    footer {
        margin-top: 0px !important;
    }