  
        /* Hero Section */
        .about-hero {
            height: 80vh;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .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"><polygon fill="rgba(255,255,255,0.1)" points="0,100 100,0 100,100"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 1400px;
            width: 100%;
            padding: 0 5%;
            margin: 0 auto;
            position: relative;
            display: block;
            z-index: 2;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .hero-content p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            color: white;
            text-shadow: 0 1px 5px rgba(0,0,0,0.1);
        }
        
        /* About Sections */
        .about-section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--accent-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
            color: #666;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
            margin-bottom: 70px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-purple);
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
            background: #f8f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
            .about-image img {
                max-width: 100%;
                max-height: 100%;
                object-fit: cover;
                height: 100%;
                width: 100%;
            }
        
        /* Values Section */
        .values-section {
            background: white;
            padding: 100px 5%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .value-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            transition: transform var(--transition-speed);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }
        
        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent-purple);
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 5%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,154,158,0.05)" points="0,0 100,0 0,100"/></svg>');
            background-size: cover;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-member {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform var(--transition-speed);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-image {
            height: 300px;
            background: #f8f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .member-info {
            padding: 25px;
        }
        
        .member-info h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--accent-purple);
        }
        
        .member-position {
            color: var(--accent-pink);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-purple);
            transition: all var(--transition-speed);
        }
        
        .social-links a:hover {
            background: var(--accent-purple);
            color: white;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 5%;
            background: var(--secondary-gradient);
            color: white;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
        }
        
        .contact-map {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #f8f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        