
    /* ========== 1. CSS Variables ========== */
    :root {
        --primary: #0a4d8c;
        --primary-dark: #042449;
        --primary-light: #e8f2fb;
        --secondary: #1e3a5f;
        --accent: #2563eb;
        --accent-light: #60a5fa;
        --gold: #d4af37;
        --white: #ffffff;
        --gray-50: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-400: #94a3b8;
        --gray-600: #475569;
        --gray-700: #334155;
        --gray-800: #1e293b;
        --text: #0f172a;
        --text-light: #64748b;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #0a4d8c 0%, #1e3a5f 100%);
        --gradient-accent: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    }

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

    body {
        background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
        font-family: 'Prompt', 'Inter', system-ui, -apple-system, sans-serif;
        overflow-x: hidden;
    }

    /* ========== 2. Animation Keyframes ========== */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(30px, 20px) rotate(5deg); }
    }

    /* ========== 3. Background Orbs ========== */
    .bg-orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }

    .bg-orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--accent-light), transparent);
        top: -200px;
        right: -100px;
    }

    .bg-orb-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--primary-light), transparent);
        bottom: -200px;
        left: -150px;
    }

    /* ========== 4. Hero Section ========== */
    .hero-section {
        position: relative;
        background: var(--gradient-primary);
        padding: 60px 0 80px;
        overflow: hidden;
        z-index: 1;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, var(--gray-50), transparent);
        z-index: 2;
    }

    .hero-floating {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
        border-radius: 50%;
        top: -150px;
        left: -100px;
        animation: float 20s infinite ease-in-out;
    }

    .hero-floating-2 {
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
        border-radius: 50%;
        bottom: -80px;
        right: 10%;
        animation: float 15s infinite ease-in-out reverse;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
        letter-spacing: -0.02em;
        line-height: 1.4;
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
        animation-fill-mode: forwards;
    }

    .hero-title span {
        background: linear-gradient(135deg, var(--accent-light), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1rem;
        color: var(--white);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* ========== 5. Content Section ========== */
    .content-section {
        position: relative;
        padding: 60px 0 80px;
        z-index: 2;
    }

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

    .section-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-light), rgba(37, 99, 235, 0.1));
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }

    .section-divider {
        width: 80px;
        height: 4px;
        background: var(--gradient-accent);
        margin: 0 auto;
        border-radius: 4px;
    }

    /* Privacy Content */
    .privacy-content {
        background: var(--white);
        border-radius: 32px;
        padding: 48px;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--gray-200);
    }

    .privacy-text {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 20px;
        text-align: justify;
    }

    .privacy-subtitle {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary);
        margin: 32px 0 16px 0;
        padding-left: 0;
        border-left: none;
    }

    .privacy-subtitle-small {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-light); /* ปรับเปลี่ยนสีให้เหมือนข้อความปกติแล้ว */
        margin: 20px 0 12px 0;
        padding-left: 0;
        border-left: none;
    }

    .privacy-list {
        margin: 16px 0 20px 30px;
        list-style: none;
        padding: 0;
    }

    .privacy-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 24px;
        line-height: 1.7;
        color: var(--text-light);
    }

    .privacy-list li::before {
        content: "▹";
        position: absolute;
        left: 0;
        color: var(--accent);
        font-size: 0.9rem;
    }

    .privacy-ol {
        margin: 16px 0 20px 30px;
        padding-left: 0;
        list-style-position: outside;
    }

    .privacy-ol li {
        margin-bottom: 10px;
        line-height: 1.7;
        color: var(--text-light);
        padding-left: 8px;
    }

    /* Table Styles */
    .table-wrapper {
        background: var(--white);
        border-radius: 24px;
        padding: 20px;
        box-shadow: var(--shadow-md);
        overflow-x: auto;
        margin: 30px 0;
    }

    .privacy-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
    }

    .privacy-table th {
        background: var(--gradient-primary);
        color: var(--white);
        padding: 14px 16px;
        text-align: left;
        font-weight: 600;
        
    }
.privacy-table th:nth-child(1) {
    width: 60%; /* ปรับความกว้างคอลัมน์แรก */
}
.privacy-table th:nth-child(2) {
    width: 40%; /* ขยายคอลัมน์ฐานทางกฎหมายให้กว้างขึ้น */
}
    .privacy-table td {
        padding: 14px 16px;
        border-bottom: 1px solid var(--gray-200);
        vertical-align: top;
        color: var(--text-light);
    }

    .privacy-table tr:last-child td {
        border-bottom: none;
    }

    .privacy-table ul {
        margin: 0;
        padding-left: 20px;
    }

    .privacy-table li {
        margin-bottom: 6px;
    }

    .table-section-title td {
        background: var(--primary-light);
        font-weight: 700;
        color: var(--primary);
        font-size: 1rem;
    }

    /* DPO Card */
    .dpo-card {
        background: linear-gradient(135deg, var(--primary-light), var(--white));
        border-radius: 24px;
        padding: 28px 32px;
        margin: 40px 0 20px;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .dpo-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dpo-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 20px;
    }

    .dpo-info {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.8;
    }

    .dpo-info a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }

    .dpo-info a:hover {
        color: var(--accent);
        text-decoration: underline;
    }

    .version-note {
        font-size: 0.85rem;
        color: var(--gray-400);
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--gray-200);
    }

    /* English Policy Image */
    .policy-image-wrapper {
        background: var(--white);
        border-radius: 32px;
        padding: 30px;
        box-shadow: var(--shadow-xl);
        text-align: center;
        border: 1px solid var(--gray-200);
    }

    .policy-image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }

    .policy-image-wrapper img:hover {
        transform: scale(1.01);
        box-shadow: var(--shadow-xl);
    }

    /* ========== 6. Floating CTA ========== */
    .floating-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 100;
    }

    .cta-button {
        width: 56px;
        height: 56px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        cursor: pointer;
        border: none;
        text-decoration: none;
    }

    .cta-button:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-2xl);
    }

    /* ========== 7. Responsive ========== */
    @media (max-width: 991px) {
        .hero-title { font-size: 1.5rem; }
        .hero-section { padding: 50px 0 70px; }
        .section-title { font-size: 1.5rem; }
        .privacy-content { padding: 32px; }
        .privacy-subtitle { font-size: 1.1rem; }
        .privacy-text { font-size: 0.95rem; }
        .table-wrapper { padding: 16px; }
        .privacy-table th, .privacy-table td { padding: 10px 12px; }
        .privacy-table { font-size: 0.85rem; }
    }

    @media (max-width: 767px) {
        .hero-section { padding: 40px 0 60px; }
        .hero-title { font-size: 1.2rem; }
        .hero-subtitle { font-size: 0.85rem; }
        .content-section { padding: 40px 0 60px; }
        .privacy-content { padding: 24px; }
        .privacy-subtitle { font-size: 1rem; margin: 24px 0 12px 0; }
        .privacy-subtitle-small { font-size: 0.9rem; }
        .privacy-text { font-size: 0.9rem; }
        .privacy-list li { font-size: 0.9rem; }
        .privacy-ol li { font-size: 0.9rem; }
        .table-wrapper { padding: 12px; margin: 20px 0; }
        .privacy-table th, .privacy-table td { padding: 8px 10px; display: block; width: 100%; }
        .privacy-table thead { display: none; }
        .privacy-table tr { display: block; margin-bottom: 16px; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
        .privacy-table td { display: block; text-align: left; border-bottom: 1px solid var(--gray-200); }
        .privacy-table td:last-child { border-bottom: none; }
        .privacy-table td::before { content: attr(data-label); font-weight: 700; color: var(--primary); display: block; margin-bottom: 8px; }
        .dpo-card { padding: 20px 24px; }
        .dpo-title { font-size: 1rem; }
        .dpo-info { font-size: 0.85rem; }
        .version-note { font-size: 0.75rem; }
        .policy-image-wrapper { padding: 20px; }
        .floating-cta { bottom: 20px; right: 20px; }
        .cta-button { width: 48px; height: 48px; font-size: 20px; }
    }

    @media (max-width: 480px) {
        .hero-title { font-size: 1rem; }
        .privacy-content { padding: 20px; }
        .privacy-subtitle { font-size: 0.95rem; }
        .privacy-text { font-size: 0.85rem; }
    }