
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8fafc;
        }

        /* Header Section */
        header {
            background: linear-gradient(135deg, #020a54 0%, #667eea 100%);;
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent);
            pointer-events: none;
        }

        h1 {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: fadeInDown 0.8s ease;
        }

        .tagline {
            font-size: 1.4em;
            font-weight: 300;
            opacity: 0.95;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease;
        }

        /* Main Content Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Story Section */
        .story-section {
            padding: 80px 20px;
            background: white;
        }

        .story-content {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .story-text {
            flex: 1;
            min-width: 300px;
        }

        .story-text h2 {
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 25px;
        }

        .story-text p {
            font-size: 1.1em;
            color: #475569;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .story-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: linear-gradient(135deg, #667eea33, #764ba233);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6em;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        /* Mission & Vision Section */
        .mission-vision {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }

        .mission-vision h2 {
            text-align: center;
            font-size: 2.8em;
            color: #1e293b;
            margin-bottom: 60px;
        }

        .mv-container {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .mv-card {
            flex: 1;
            min-width: 280px;
            background: white;
            padding: 45px 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.12);
        }

        .mv-card h3 {
            font-size: 2em;
            color: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mv-card p {
            font-size: 1.1em;
            color: #64748b;
            line-height: 1.8;
        }

        /* Values Section */
        .values-section {
            padding: 80px 20px;
            background: white;
        }

        .values-section h2 {
            text-align: center;
            font-size: 2.8em;
            color: #1e293b;
            margin-bottom: 60px;
        }

        .values-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .value-item {
            flex: 1 1 calc(33.333% - 30px);
            min-width: 250px;
            max-width: 350px;
            background: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            color: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: scale(1.05);
        }

        .value-item .icon {
            font-size: 3.5em;
            margin-bottom: 20px;
        }

        .value-item h4 {
            font-size: 1.6em;
            margin-bottom: 15px;
        }

        .value-item p {
            font-size: 1em;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            padding: 80px 20px;
            background: #f8fafc;
        }

        .team-section h2 {
            text-align: center;
            font-size: 2.8em;
            color: #1e293b;
            margin-bottom: 25px;
        }

        .team-intro {
            text-align: center;
            font-size: 1.2em;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .team-member {
            flex: 0 1 250px;
            text-align: center;
        }

        .member-photo {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease;
        }

        .team-member:hover .member-photo {
            transform: scale(1.1);
        }

        .member-name {
            font-size: 1.4em;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .member-role {
            color: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            font-weight: 500;
            font-size: 1.1em;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2.8em;
            margin-bottom: 25px;
        }

        .cta-section p {
            font-size: 1.3em;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: inline-block;
            padding: 18px 45px;
            background: white;
            color: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 600;
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        footer p {
            font-size: 1em;
            opacity: 0.8;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

            .tagline {
                font-size: 1.1em;
            }

            .story-content {
                flex-direction: column;
            }

            .story-text h2,
            .mission-vision h2,
            .values-section h2,
            .team-section h2,
            .cta-section h2 {
                font-size: 2em;
            }

            .value-item {
                flex: 1 1 100%;
            }
        }