        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-container img {
            height: 60px;
            width: auto;
        }

        .logo-text {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-links a:hover {
            background: rgba(220, 53, 69, 0.2);
            color: #dc3545;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 8rem 2rem 4rem;
            text-align: center;
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .page-header p {
            font-size: 1.3rem;
            color: #dc3545;
            font-weight: 500;
        }

        /* Content Sections */
        .content-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-section.gray {
            background: #f8f9fa;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
            font-weight: 700;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #dc3545;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 500;
        }

        .content-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #555;
            max-width: 900px;
            margin: 0 auto 2rem;
        }

        .content-text p {
            margin-bottom: 1.5rem;
        }

        /* Vision & Mission Grid */
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .vm-card {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-top: 4px solid #dc3545;
            transition: transform 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
        }

        .vm-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .vm-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            text-align: center;
        }

        .vm-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            text-align: center;
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .value-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-8px);
            border-color: #dc3545;
            box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #dc3545;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #dc3545;
        }

        .value-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #ccc;
        }

        /* Leadership Section */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .leader-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .leader-card:hover {
            transform: translateY(-10px);
        }

        .leader-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
        }

        .leader-info {
            padding: 2rem;
            text-align: center;
        }

        .leader-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .leader-info .title {
            color: #dc3545;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .leader-info p {
            color: #666;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #dc3545;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #dc3545;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1a1a1a;
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            }

            .nav-links.active {
                display: flex;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            nav {
                padding: 0 1.5rem;
            }
        }
    