* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: #f8fafc;
            color: #0f172a;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: white;
            border-radius: 4rem;
            box-shadow: 0 10px 30px -10px #00000020;
            margin-bottom: 3rem;
            border: 1px solid #e2e8f0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #2563eb, #1e40af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            transition: 0.15s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #2563eb;
        }
        .nav-links a.active {
            font-weight: 600;
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            color: white;
            padding: 4rem;
            border-radius: 3rem;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }
        .about-hero::before {
            content: "📚";
            font-size: 15rem;
            position: absolute;
            right: 2rem;
            bottom: -2rem;
            opacity: 0.1;
            transform: rotate(5deg);
        }
        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #a5f3fc, #c7d2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .about-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            color: #cbd5e1;
        }

        /* Mission Section */
        .mission-section {
            background: white;
            border-radius: 2.5rem;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: 0 15px 30px -15px #1e293b40;
            border: 1px solid #e2e8f0;
        }
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }
        .mission-card {
            text-align: center;
            padding: 2rem;
            background: #f8fafc;
            border-radius: 2rem;
            border: 1px solid #e2e8f0;
        }
        .mission-card i {
            font-size: 3rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }
        .mission-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }
        .mission-card p {
            color: #64748b;
        }

        /* Story Section */
        .story-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            background: #f1f5f9;
            border-radius: 2.5rem;
            padding: 3rem;
        }
        .story-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: #1e293b;
        }
        .story-content p {
            color: #475569;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .story-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .stat-item {
            background: white;
            padding: 2rem;
            border-radius: 1.5rem;
            text-align: center;
            border: 1px solid #cbd5e1;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 0.3rem;
        }
        .stat-label {
            color: #64748b;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Team Section */
        .team-section {
            margin-bottom: 4rem;
            justify-items: center;
            justify-self: center;
            justify-content: center;
        }
        .team-section h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-align: center;

        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .team-card {
            background: white;
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: 0.2s;
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px -10px #1e293b60;
        }
        .team-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(145deg, #2563eb, #1e40af);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }
        .team-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }
        .team-role {
            color: #2563eb;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .team-bio {
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Features / Values */
        .values-section {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            color: white;
            padding: 4rem;
            border-radius: 2.5rem;
            margin-bottom: 4rem;
        }
        .values-section h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .value-item {
            text-align: center;
        }
        .value-item i {
            font-size: 2.5rem;
            color: #38bdf8;
            margin-bottom: 1rem;
        }
        .value-item h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .value-item p {
            color: #94a3b8;
        }

        /* Timeline */
        .timeline {
            margin-bottom: 4rem;
        }
        .timeline h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .timeline-item {
            background: white;
            padding: 2rem;
            border-radius: 1.5rem;
            border-left: 6px solid #2563eb;
            box-shadow: 0 10px 20px -8px #00000020;
        }
        .timeline-year {
            font-size: 2rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 0.5rem;
        }
        .timeline-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .timeline-desc {
            color: #64748b;
        }

        /* Contact & Office */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }
        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 2rem;
            border: 1px solid #e2e8f0;
        }
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        .contact-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #475569;
        }
        .contact-detail i {
            width: 2rem;
            color: #2563eb;
            font-size: 1.3rem;
        }
        .map-placeholder {
            background: #e2e8f0;
            border-radius: 2rem;
            padding: 2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .map-placeholder i {
            font-size: 4rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: white;
            padding: 3rem;
            border-radius: 2.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-col a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-col a:hover {
            color: white;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            background: #1e293b;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            color: #94a3b8;
        }