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

        body {
            font-family: 'Poppins', sans-serif;
            color: #1e293b;
            background: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            box-shadow: 0 8px 20px rgba(16, 91, 191, 0.25);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(16, 91, 191, 0.35);
        }

        .btn-white {
            background: white;
            color: #105bbf;
            padding: 14px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            font-size: 1rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            background: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        }

        /* Page Header */
        .page-header {
            padding: 50px 0 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .page-header h1 span {
            color: #ffd966;
        }

        .page-header p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Owner Section */
        .owner-spotlight {
            padding: 60px 0 40px;
            background: #ffffff;
        }

        .owner-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 50px;
        }

        .owner-profile {
            flex: 1;
            min-width: 280px;
            text-align: center;
        }

        .circular-image {
            width: 320px;
            height: 320px;
            max-width: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: top 30% center;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
            border: 5px solid white;
            outline: 3px solid #105bbf;
            transition: transform 0.3s ease;
        }

        .circular-image:hover {
            transform: scale(1.02);
        }

        .social-links {
            margin-top: 24px;
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: #eef2ff;
            border-radius: 50%;
            color: #105bbf;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            transform: translateY(-4px);
        }

        .owner-bio {
            flex: 1.4;
            min-width: 280px;
        }

        .owner-bio h2 {
            font-size: 2rem;
            margin-bottom: 6px;
            color: #0b1e33;
            font-weight: 700;
        }

        .owner-tagline {
            font-size: 1rem;
            font-weight: 500;
            color: #105bbf;
            margin-bottom: 18px;
            border-left: 4px solid #ffd966;
            padding-left: 14px;
        }

        .owner-description p {
            margin-bottom: 14px;
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .signature {
            font-weight: 500;
            font-size: 0.9rem;
            color: #0b1e33;
            margin-top: 12px;
        }

        .signature i {
            color: #ffd966;
            margin-right: 6px;
        }

        hr.divider-light {
            margin: 22px 0 12px;
            border: 0;
            height: 1px;
            background: #e2e8f0;
        }

        /* Platform Section */
        .platform-section {
            padding: 40px 0 50px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .platform-title {
            text-align: center;
            margin-bottom: 28px;
        }

        .platform-title h3 {
            font-size: 1.4rem;
            color: #0b1e33;
            font-weight: 600;
        }

        .platform-title p {
            color: #64748b;
            font-size: 0.85rem;
            margin-top: 5px;
        }

        .platform-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .platform-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 18px;
            border-radius: 40px;
            text-decoration: none;
            color: #1e293b;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.25s ease;
            border: 1px solid #e2e8f0;
        }

        .platform-badge i {
            font-size: 0.9rem;
            color: #105bbf;
        }

        .platform-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(16, 91, 191, 0.12);
            border-color: #105bbf;
        }

        /* Mission Section */
        .mission-section {
            padding: 50px 0;
            background: #ffffff;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mission-card {
            background: #f8fafc;
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eef2ff;
        }

        .mission-card:hover {
            transform: translateY(-5px);
            border-color: #105bbf;
            background: white;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
        }

        .mission-icon {
            width: 70px;
            height: 70px;
            background: #eef2ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .mission-icon i {
            font-size: 2rem;
            color: #105bbf;
        }

        .mission-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #0b1e33;
        }

        .mission-card p {
            color: #64748b;
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 45px 0;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            text-align: center;
        }

        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffd966;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Values Section */
        .values-section {
            padding: 50px 0;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-header h2 {
            font-size: 2rem;
            color: #0b1e33;
        }

        .section-header h2 span {
            color: #105bbf;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .value-item {
            text-align: center;
            padding: 28px 16px;
            border: 1px solid #eef2ff;
            border-radius: 24px;
            transition: all 0.3s ease;
            background: #fefefe;
        }

        .value-item:hover {
            transform: translateY(-4px);
            border-color: #105bbf;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
        }

        .value-item i {
            font-size: 2rem;
            color: #105bbf;
            margin-bottom: 12px;
        }

        .value-item h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #0b1e33;
        }

        .value-item p {
            color: #64748b;
            font-size: 0.82rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 55px 0;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: 12px;
        }

        .cta-section p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
         @media (max-width: 768px) {
            .mission-grid, .values-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
            .page-header h1, .section-header h2, .cta-section h2, .owner-bio h2 {
                font-size: 1.8rem;
            }
            .circular-image {
                width: 260px;
                height: 260px;
            }
            .platform-badge {
                padding: 6px 14px;
                font-size: 0.7rem;
            }
            .stats-grid {
                gap: 20px;
            }
            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 18px;
            }
            .circular-image {
                width: 220px;
                height: 220px;
            }
            .platform-badge {
                padding: 5px 12px;
                font-size: 0.65rem;
            }
            .btn-primary, .btn-white {
                padding: 10px 22px;
                font-size: 0.85rem;
            }
        }