 :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            --tertiary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --accent-vibrant: #ff6b6b;
            --accent-electric: #4ecdc4;
            --warning-amber: #feca57;
            --dark-charcoal: #2c3e50;
            --light-pearl: #ecf0f1;
            --text-primary: #2c3e50;
            --text-secondary: #7f8c8d;
            --border-subtle: #bdc3c7;
            --shadow-primary: 0 15px 35px rgba(0, 0, 0, 0.1);
            --shadow-elevated: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .document-body-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--light-pearl);
            overflow-x: hidden;
        }

        .content-container-fluid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-wrapper-primary {
            padding: 80px 0;
            position: relative;
        }

        .text-alignment-center {
            text-align: center;
        }

        .interactive-button-element {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            background: var(--secondary-gradient);
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 17px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .interactive-button-element::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .interactive-button-element:hover::before {
            left: 100%;
        }

        .interactive-button-element:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-elevated);
        }

        @keyframes floating-animation {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(5px) rotate(-1deg); }
        }

        .hero-section-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-image-element {
            width: 100%;
            max-width: 600px;
            height: auto;
            margin: 30px auto;
            border-radius: 20px;
            box-shadow: var(--shadow-elevated);
            display: block;
        }

        .hero-section-primary::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--accent-electric);
            border-radius: 50%;
            top: 20%;
            right: 10%;
            opacity: 0.1;
            animation: floating-animation 6s ease-in-out infinite;
            z-index: 1;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
        }

        .brand-logo-element { 
            margin-bottom: 40px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
        }

        .primary-heading-title {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .secondary-subtitle-text {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 35px;
            opacity: 0.95;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .popular-positions-container {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            margin-top: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .partners-showcase-section {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            padding: 60px 0;
            border-top: 1px solid var(--border-subtle);
        }

        .partners-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            align-items: center;
            justify-items: center;
            margin-top: 50px;
        }

        .partner-brand-logo {
            height: 55px;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .partner-brand-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .employment-opportunities-section {
            background: var(--tertiary-gradient);
            color: white;
            position: relative;
        }

        .employment-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .job-opportunity-card {
            background: rgba(255, 255, 255, 0.95);
            color: var(--text-primary);
            padding: 50px;
            border-radius: 25px;
            box-shadow: var(--shadow-elevated);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .job-opportunity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--secondary-gradient);
        }

        .job-opportunity-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .job-visual-representation {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .job-opportunity-card:hover .job-visual-representation {
            transform: scale(1.05);
        }

        .benefits-enumeration-list {
            list-style: none;
            margin: 25px 0;
        }

        .benefits-enumeration-list .benefit-list-item {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-weight: 500;
        }

        .benefits-enumeration-list .benefit-list-item::before {
            content: '⚡';
            position: absolute;
            left: 0;
            color: var(--accent-electric);
            font-size: 18px;
        }

        .incentive-rewards-section {
            background: var(--dark-charcoal);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .incentive-rewards-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--accent-vibrant);
            border-radius: 50%;
            top: -150px;
            left: -150px;
            opacity: 0.1;
        }

        .rewards-grid-structure {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .reward-incentive-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .reward-incentive-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
        }

        .position-requirements-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            position: relative;
        }

        .requirements-image-element {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin: 30px auto;
            border-radius: 20px;
            box-shadow: var(--shadow-elevated);
            display: block;
        }

        .requirements-content-wrapper {
            position: relative;
            z-index: 2;
        }

        .requirements-grid-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .requirement-specification-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
        }

        .requirement-specification-item:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-5px);
        }

        .requirement-visual-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
            box-shadow: var(--shadow-primary);
        }

        .statistics-showcase-section {
            background: url('https://parttimekaew.work/_nuxt/hw.ck9TBCdv.png') center/cover;
            position: relative;
            color: white;
            background-attachment: fixed;
        }

        .statistics-showcase-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 62, 80, 0.85);
        }

        .statistics-content-wrapper {
            position: relative;
            z-index: 2;
        }

        .statistics-metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-top: 50px;
        }

        .statistic-metric-item {
            text-align: center;
            padding: 20px;
        }

        .metric-numerical-value {
            font-size: 3rem;
            font-weight: 900;
            color: var(--warning-amber);
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .final-call-to-action-section {
            background: var(--secondary-gradient);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .final-call-to-action-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -200px;
            right: -200px;
        }

        .risk-disclosure-warning-section {
            background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
            border-left: 8px solid var(--warning-amber);
            padding: 40px;
            margin: 50px 0;
            border-radius: 10px;
        }

        .warning-header-title {
            color: #d97706;
            font-weight: 800;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .document-footer-section {
            background: var(--dark-charcoal);
            color: white;
            padding: 50px 0 120px 0;
            text-align: center;
        }

        .footer-navigation-links {
            margin-top: 25px;
        }

        .footer-navigation-links .footer-link-element {
            color: var(--warning-amber);
            text-decoration: none;
            margin: 0 20px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-navigation-links .footer-link-element:hover {
            color: var(--accent-electric);
        }

        .floating-action-button {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: var(--secondary-gradient);
            color: white;
            padding: 18px 30px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: var(--shadow-elevated);
            animation: pulsating-glow 4s ease-in-out infinite;
            border: 2px solid rgba(255, 255, 255, 0.3);
            white-space: nowrap;
            text-align: center;
        }

        @keyframes pulsating-glow {
            0%, 100% { 
                transform: translateX(-50%) scale(1); 
                box-shadow: 0 15px 35px rgba(245, 87, 108, 0.4);
            }
            50% { 
                transform: translateX(-50%) scale(1.15); 
                box-shadow: 0 25px 50px rgba(245, 87, 108, 0.6);
            }
        }

        .section-primary-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
        }

        .section-descriptive-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 50px;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .content-container-fluid {
                padding: 0 18px;
            }
            
            .section-wrapper-primary {
                padding: 50px 0;
            }
            
            .employment-cards-grid {
                grid-template-columns: 1fr;
            }
            
            .job-opportunity-card {
                padding: 35px 25px;
            }
            
            .floating-action-button {
                bottom: 20px;
                padding: 15px 25px;
                font-size: 14px;
                max-width: 90%;
            }
            
            .hero-section-primary {
                min-height: auto;
                padding: 60px 0;
            }

            .document-footer-section {
                padding: 50px 0 100px 0;
            }
        }

        @media (max-width: 480px) {
            .floating-action-button {
                bottom: 15px;
                padding: 12px 20px;
                font-size: 13px;
                max-width: 95%;
            }

            .document-footer-section {
                padding: 50px 0 90px 0;
            }
        }

        .zigzag-pattern-divider {
            height: 60px;
            background: linear-gradient(45deg, transparent 49%, var(--accent-electric) 49%, var(--accent-electric) 51%, transparent 51%);
            background-size: 30px 30px;
        }