        @font-face {
            font-family: 'Sans';
            src: url('/assets/font.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Sans', -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "SF Pro Icons", PingFang SC, Helvetica Neue, Helvetica, Arial, sans-serif;
            white-space: normal;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        :root {
            --primary-color: #00B36B;
        }

        body {
            background-color: #FFFFFF;
            color: #1F2937;
        }

        .gradient-text {
            background: linear-gradient(90deg, #00B36B 0%, #2BC4B8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav {
            background-color: rgba(255, 255, 255, 0.6);
            backdrop-filter: saturate(180%) blur(10px);
            -webkit-backdrop-filter: saturate(180%) blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            border-bottom: 1px solid rgba(242, 242, 242, 0.8);
            height: 44px;
            width: 100%;
            overflow-x: hidden;
        }

        .nav-content {
            max-width: 980px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            padding: 0 22px;
            width: 100%;
            position: relative;
        }

        .nav-logo {
            height: 20px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            flex-shrink: 0;
        }

        .nav-links a {
            color: #1d1d1f;
            text-decoration: none;
            font-size: 11px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 9998;
        }

        .mobile-menu.show {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: #1d1d1f;
            text-decoration: none;
            font-size: 17px;
            border-bottom: 1px solid #f2f2f2;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            padding: 5px;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: #1d1d1f;
            margin: 4px 0;
            transition: 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .video-background {
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
            background-color: #f5f5f7;
        }

        .video-background video {
            display: none;
        }

        .video-overlay {
            display: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content .max-w-7xl {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
        }

        .hero-content h1 {
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: -0.005em;
        }

        .hero-content h2 {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 14px;
            letter-spacing: 0.004em;
            color: #86868b;
        }

        .bg-gray-50 {
            background-color: #f5f5f7 !important;
        }

        .bg-white {
            background-color: #f5f5f7 !important;
        }

        .footer {
            background-color: #fefefe;
            padding: 20px 0;
            width: 100%;
            overflow-x: hidden;
        }

        .footer-content {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
            width: 100%;
            box-sizing: border-box;
        }

        .footer-section {
            border-bottom: 1px solid #d2d2d7;
            padding: 20px 0;
        }

        .footer-section:last-child {
            border-bottom: none;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .footer-column h4 {
            font-size: 11px;
            color: #1d1d1f;
            margin-bottom: 10px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
        }

        .footer-column ul li a {
            color: #424245;
            text-decoration: none;
            font-size: 11px;
        }

        .footer-column ul li a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            padding-top: 20px;
            font-size: 11px;
            color: #86868b;
        }

        .footer-bottom p {
            margin-bottom: 8px;
        }

        .footer-bottom a {
            color: #424245;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .legal-links {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .nav-scrolled {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .nav-scrolled a {
            color: #1F2937 !important;
        }

        .nav-scrolled a:hover {
            color: #4B5563 !important;
        }

        @media (max-width: 768px) {
            .nav-content {
                padding: 0 15px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .footer-content {
                padding: 0 15px;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .legal-links {
                flex-wrap: wrap;
                gap: 10px;
            }

            .footer-bottom .flex {
                flex-direction: column;
                gap: 10px;
            }

            .footer-bottom .flex > div {
                width: 100%;
            }
        }

        .hero {
            padding-top: 44px;
        }