        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: white;
            color: #1A1A1A;
        }

        /* Navigation */
        .navbar {
            background: white;
            padding: 16px 60px;
            border: 1px solid #E5E5E5;
            border-radius: 20px;
            margin: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

.logo img {
    height: 40px;
    width: auto;
}

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #2B7EFF;
        }

        .btn-partner {
            background: #2B7EFF;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #1A1A1A;
        }

        .mobile-only {
            display: none;
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 80px 60px;
            text-align: center;
        }

        .section-badge {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid #2B7EFF;
            border-radius: 50px;
            color: #2B7EFF;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 32px;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 32px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlight {
            color: #2B7EFF;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        /* Partner Cards */
        .partners-section {
            padding: 60px 80px;
            background: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-card {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .partner-card:hover {
            transform: translateY(-8px);
        }

        .partner-card:nth-child(1) .partner-header {
            background: linear-gradient(135deg, #FFF4E6 0%, #FFECCF 100%);
        }

        .partner-card:nth-child(2) .partner-header {
            background: linear-gradient(135deg, #E6FFF7 0%, #B3FFE6 100%);
        }

        .partner-card:nth-child(3) .partner-header {
            background: linear-gradient(135deg, #FFE6F0 0%, #FFD1E8 100%);
        }

        .partner-header {
            padding: 50px 40px;
            text-align: center;
        }

        .partner-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 0;
        }

        .partner-body {
            background: white;
            padding: 40px;
            text-align: center;
        }

        .partner-text {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }

        /* Contact Info Section */
        .contact-info-section {
            padding: 80px 80px;
            background: #F8F8F8;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-8px);
        }

        .contact-card:nth-child(1) .contact-header {
            background: linear-gradient(135deg, #E6F3FF 0%, #D1E8FF 100%);
        }

        .contact-card:nth-child(2) .contact-header {
            background: linear-gradient(135deg, #FFE6F0 0%, #FFD1E8 100%);
        }

        .contact-card:nth-child(3) .contact-header {
            background: linear-gradient(135deg, #E6FFF7 0%, #B3FFE6 100%);
        }

        .contact-header {
            padding: 40px 30px;
            text-align: center;
        }

        .contact-title {
            font-size: 28px;
            font-weight: 800;
        }

        .contact-body {
            background: white;
            padding: 40px 30px;
            text-align: center;
        }

        .contact-main {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .contact-sub {
            font-size: 14px;
            color: #666;
            font-style: italic;
        }

        /* Form Section */
        .form-section {
            padding: 60px 80px;
            margin: 60px 80px;
            background: linear-gradient(135deg, #2B7EFF 0%, #1a6de6 100%);
            border-radius: 48px;
            position: relative;
            overflow: hidden;
        }

        .form-badge {
            display: inline-block;
            padding: 10px 28px;
            background: white;
            border-radius: 50px;
            color: #2B7EFF;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .form-title {
            color: white;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            text-align: center;
        }

        .form-subtitle {
            color: white;
            font-size: 16px;
            margin-bottom: 40px;
            text-align: center;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            color: white;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 16px 24px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            outline: none;
            font-family: inherit;
        }

        .form-textarea {
            border-radius: 24px;
            resize: vertical;
            min-height: 120px;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #999;
        }

        .submit-btn {
            background: white;
            color: #2B7EFF;
            padding: 16px 48px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: block;
            margin: 30px auto 20px;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,255,255,0.3);
        }

        .form-note {
            color: white;
            font-size: 13px;
            font-style: italic;
            text-align: center;
        }

        /* Footer */
        .footer {
            background: #2C2C2C;
            color: white;
            padding: 60px 80px 30px;
            position: relative;
            overflow: hidden;
        }

        .footer > * {
            position: relative;
            z-index: 1;
        }

        .footer-cta {
            background: white;
            border-radius: 28px;
            padding: 40px 50px;
            margin-bottom: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-cta h3 {
            color: #2B7EFF;
            font-size: 28px;
            font-weight: 800;
            max-width: 700px;
        }

        .btn-cta {
            background: #2B7EFF;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 2fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: #999;
            margin: 20px 0;
            line-height: 1.6;
        }

        .social-links h4 {
            font-size: 15px;
            margin-bottom: 14px;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background: #2B7EFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            transition: transform 0.3s;
        }

        .social-icon:hover {
            transform: translateY(-4px);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .footer-column a,
        .footer-column p {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 14px;
            font-size: 14px;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #666;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .navbar {
                margin: 16px 20px;
                padding: 16px 24px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 20px;
                right: 20px;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
                border-radius: 16px;
                z-index: 1000;
                gap: 16px;
            }

            .nav-links.active {
                display: flex;
            }

            .btn-partner {
                display: none;
            }

            .mobile-only {
                display: block;
            }

            .hero-section, .partners-section, .contact-info-section, .form-section {
                padding: 50px 30px;
            }

            .form-section {
                margin: 40px 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .partners-grid, .contact-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 50px 30px 30px;
            }

            .footer-cta {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 28px;
            }

            .partner-title, .contact-title {
                font-size: 22px;
            }

            .form-title {
                font-size: 28px;
            }
        }