body{
            margin: 0;
            padding: 0px;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
            color: #334155;
            line-height: 1.6;
        }

        header {
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        header .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 24px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        header h1 {
            font-size: 30px;
            font-weight: 700;
            color: #1e293b;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        section {
            margin: 64px auto;
        }

        .bio-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            padding: 32px 48px;
            margin-bottom: 64px;
            transform: transition 300ms ease;
            transition: transform 300ms ease;
        }

        .bio-card:hover {
            transform: scale(1.01);
        }

        .bio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .bio-grid {
                grid-template-columns: 1fr;
            }
        }

        .bio-content h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 24px;
        }

        .bio-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 18px;
        }

        .bio-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bio-item span {
            font-weight: 600;
        }

        .avatar {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .avatar-glow {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, #60a5fa, #4ade80);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .avatar-circle {
            position: relative;
            background: linear-gradient(to bottom right, #2563eb, #16a34a);
            border-radius: 50%;
            padding: 80px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 320px;
            height: 320px;
        }

        .avatar-icon {
            width: 128px;
            height: 128px;
            color: white;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        h2.section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 48px;
        }

        .history-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 200px;
            padding: 50px;
        }

        .history-item {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .history-item.reverse {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {
            .history-item,
            .history-item.reverse {
                flex-direction: column;
            }
        }

        .history-image {
            flex: 0 0 50%;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            height: 320px;
        }

        .history-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 700ms ease-out;
        }

        .history-item:hover .history-image img {
            transform: scale(1.1);
        }

        .history-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
            opacity: 0;
            transition: opacity 300ms ease;
        }

        .history-item:hover .history-overlay {
            opacity: 1;
        }

        .history-content {
            flex: 0 0 50%;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .history-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .history-header h3 {
            font-size: 30px;
            font-weight: 700;
            color: #1e293b;
        }

        .history-content p {
            font-size: 18px;
            color: #475569;
            line-height: 1.8;
        }

        .table-section {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            padding: 32px;
            overflow-x: auto;
        
        }

        .table-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 32px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background: linear-gradient(to right, #1e293b, #0f172a);
            color: white;
        }

        thead tr th {
            border: 1px solid #cbd5e1;
            padding: 16px 24px;
            text-align: left;
            font-weight: 600;
        }

        tbody tr {
            transition: background-color 200ms ease;
        }

        tbody tr:nth-child(odd) {
            background: #f8fafc;
        }

        tbody tr:nth-child(even) {
            background: white;
        }

        tbody tr:hover {
            background: #e0f2fe;
        }

        tbody tr td {
            border: 1px solid #cbd5e1;
            padding: 12px 24px;
            color: #475569;
        }

        .thanks-section {
            background: linear-gradient(to right, #f0f4f8, #f0fdf4);
            border-radius: 16px;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            padding: 48px;
            margin-bottom: 64px;
            overflow: hidden;
            position: relative;
        }

        .thanks-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 48px;
        }

        .thanks-content {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .thanks-content {
                flex-direction: column;
            }
        }

        .thanks-image {
            flex: 0 0 calc(33.333% - 32px);
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            height: 384px;
        }

        .thanks-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thanks-text {
            flex: 0 0 calc(66.666% - 16px);
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .thanks-text h3 {
            font-size: 30px;
            font-weight: 700;
            color: #1e293b;
        }

        .thanks-divider {
            width: 64px;
            height: 4px;
            background: linear-gradient(to right, #2563eb, #16a34a);
            border-radius: 9999px;
        }

        .thanks-text p {
            font-size: 18px;
            color: #475569;
            line-height: 1.8;
        }

        .thanks-text .highlight {
            font-weight: 600;
        }

        footer {
            background: #1e293b;
            color: white;
            padding: 32px 16px;
            text-align: center;
            margin-top: 64px;
            font-size: 18px;
        }

        .icon {
            display: inline-block;
            width: 20px;
            height: 20px;
        }

        .icon.blue { color: #2563eb; }
        .icon.green { color: #16a34a; }
        .icon.red { color: #dc2626; }
        .icon.orange { color: #ea580c; }
        .icon.purple { color: #9333ea; }