     :root {
            --primary-gradient: linear-gradient(135deg, #222 0%, #222 100%);
            --secondary-gradient: linear-gradient(135deg, #2222 0%, #2222 100%);
            --dark-color: #222;
            --medium-color: #222;
            --light-color: #f7fafc;
            --accent-color: #222;
            --success-color: #48bb78;
            --error-color: #f56565;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.05);
        }

    

        .containerA {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            margin-top: 100px;
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            margin-bottom: -5rem;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.3)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
            opacity: 0.1;
            z-index: 1;
        }

        .about-hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            color: var(--dark-color);
            font-weight: 800;
            line-height: 1.2;
        }

        .about-hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 2;
            color: var(--medium-color);
        }

        /* Mission Section */
        .mission-section {
            padding: 6rem 0;
            position: relative;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(102,126,234,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
            z-index: -1;
        }

        .mission-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .mission-text {
            flex: 1;
        }

        .mission-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
        }

        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .mission-image:hover img {
            transform: scale(1.05);
        }

        .mission-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0.1;
            z-index: 1;
        }

        .Asection-header {
            margin-bottom: 3rem;
        }

        .Asection-header h2 {
            font-size: 2.75rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .Asection-header h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .Asection-header p {
            font-size: 1.25rem;
            color: var(--medium-color);
            max-width: 700px;
        }

        /* Values Section */
        .values-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
            margin: 4rem 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .value-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .value-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-gradient);
            transition: var(--transition);
        }

        .value-card:hover::after {
            width: 6px;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .value-card:hover .value-icon {
            transform: scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .value-card p {
            color: var(--medium-color);
        }

        /* Timeline Section */
        .timeline-section {
            padding: 6rem 0;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .timeline-item {
            padding: 2rem 0;
            position: relative;
            width: 100%;
        }

        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 2rem);
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 2rem);
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            border: 4px solid var(--accent-color);
            z-index: 1;
        }

        .timeline-content {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: white;
            transform: translateY(-50%) rotate(45deg);
            box-shadow: var(--shadow-sm);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -10px;
        }

        .timeline-year {
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .timeline-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        /* Team Section */
        .team-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
            margin: 4rem 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .team-member {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-photo {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 2rem;
            border: 5px solid white;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
        }

        .team-member:hover .team-photo {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .team-photo img {
            transform: scale(1.1);
        }

        .team-member h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .team-member .position {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            display: inline-block;
            position: relative;
        }

        .team-member .position::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--accent-color);
            transition: var(--transition);
        }

        .team-member:hover .position::after {
            width: 60px;
        }

        .team-member p {
            color: var(--medium-color);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            background: var(--primary-gradient);
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .social-links a:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-md);
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            border-radius: 12px;
            background: white;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--medium-color);
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            color: #222;
            text-align: center;
            box-shadow: 6px  #222;
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .Acta-button {
            display: inline-block;
            padding: 1.25rem 3rem;
            background: white;
            color: var(--accent-color);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
        }

        .Acta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .about-hero {
                padding: 6rem 0 4rem;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
                margin-bottom: -3rem;
            }
            
            .mission-content {
                flex-direction: column;
            }
            
            .mission-image {
                order: -1;
                margin-bottom: 3rem;
            }
            
            .timeline::before {
                left: 2rem;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: calc(2rem + 2rem);
                padding-right: 0;
                text-align: left;
            }
            
            .timeline-dot {
                left: 2rem;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -10px;
                right: auto;
            }
            
            .values-section,
            .team-section {
                clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
            }
        }

        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 3rem;
            }
            
            .about-hero p {
                font-size: 1.2rem;
            }
            
            .section-header h2 {
                font-size: 2.25rem;
            }
            
            .cta-section h2 {
                font-size: 2.5rem;
            }
            
            .values-section,
            .team-section {
                clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
                padding: 4rem 0;
            }
        }

        @media (max-width: 480px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }