
        :root {
            --primary-color: #186a8b;
            --primary-light: #4a8ca9;
            --primary-dark: #0d4c66;
            --secondary-color: #3a506b;
            --accent-color: #e67e22;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --success-color: #27ae60;
            --text-color: #333;
            --light-text: #777;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        .about-container {
            width: 100%;
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 15px;
        }

        .page-title {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }

        .about-content {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            line-height: 1.7;
        }

        .section-title {
            color: var(--primary-color);
            margin: 30px 0 20px 0;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .values-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .values-list li {
            padding: 12px 15px 12px 45px;
            margin-bottom: 10px;
            background: #f8f9fa;
            border-radius: 4px;
            position: relative;
            transition: var(--transition);
        }

        .values-list li:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .values-list li:before {
            content: '✓';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--success-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .team-section {
            margin-top: 40px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }

        .team-member {
            text-align: center;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .member-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-light);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px auto;
            font-size: 2rem;
        }

        .member-role {
            color: var(--primary-color);
            font-weight: 600;
            margin: 10px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--light-text);
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .about-content {
                padding: 25px;
            }
            
            .team-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .values-list li {
                padding: 10px 12px 10px 40px;
            }
        }
   