:root {
            --primary-black: #000000;
            --primary-white: #ffffff;
            --accent-purple: #9c3682;
            --accent-gray: #767779;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--primary-white);
            color: var(--primary-black);
            line-height: 1.6;
        }

        /* Header Section */
        .about-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
            padding: 160px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .about-header::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(156, 54, 130, 0.1), rgba(156, 54, 130, 0.03));
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .about-header::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, rgba(156, 54, 130, 0.08), rgba(156, 54, 130, 0.02));
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
            animation: rotate 20s linear infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: var(--accent-gray);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            background-color: var(--primary-white);
        }

        .team-photo {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 2rem;
            transition: transform 0.4s ease;
        }

        .team-photo:hover {
            transform: scale(1.02);
        }

        .team-description {
            font-size: 1.1rem;
            color: var(--accent-gray);
            line-height: 1.8;
            text-align: center;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-gray), var(--primary-white));
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-black);
            margin-bottom: 60px;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .stat-card {
            background: var(--primary-white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), #b8469a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--accent-purple);
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-purple);
            display: block;
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--accent-gray);
            font-weight: 600;
        }

        /* Documents Section */
        .documents-section {
            padding: 80px 0;
            background-color: var(--primary-white);
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .document-card {
            background: var(--primary-white);
            border: 2px solid var(--medium-gray);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .document-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(156, 54, 130, 0.02), rgba(156, 54, 130, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .document-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(156, 54, 130, 0.2);
            border-color: var(--accent-purple);
        }

        .document-card:hover::after {
            opacity: 1;
        }

        .document-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .document-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary-black);
            position: relative;
            z-index: 2;
        }

        .document-description {
            color: var(--accent-gray);
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        .zoom-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(156, 54, 130, 0.9);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .document-card:hover .zoom-icon {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-modal.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            animation: lightboxZoom 0.3s ease;
        }

        @keyframes lightboxZoom {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            color: var(--accent-purple);
            transform: scale(1.1);
        }

        #lightboxImage {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-title {
                font-size: 2.5rem;
            }

            .about-subtitle {
                font-size: 1.1rem;
            }

            .team-photo {
                height: 300px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .documents-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .about-header {
                padding: 100px 0 60px;
            }

            .about-title {
                font-size: 2rem;
            }

            .stat-card {
                padding: 30px 20px;
            }

            .document-image {
                height: 250px;
            }
        }