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

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Critical CSS - Above the fold optimizations */
html {
    font-size: 16px;
}

/* Prevent layout shift */
img {
    height: auto;
    max-width: 100%;
}

/* Hardware acceleration for better performance */
.hero {
    will-change: transform;
    transform: translateZ(0);
}

        :root {
            /* Primary Colors - Màu chính (CareerFoundry style) */
            --primary: #b91c1c;      /* Xanh dương đậm - Chuyên nghiệp, tin cậy */
            --primary-light: #b91c1c; /* Xanh dương nhạt - Nhấn mạnh */
            --primary-dark: #b91c1c;  /* Xanh dương tối - Độ sâu */
            
            /* Secondary Colors - Màu phụ */
            --secondary: #dc2626;     /* Đỏ cam - Nổi bật, năng động */
            --secondary-light: #ef4444; /* Đỏ cam nhạt - Nhẹ nhàng */
            --secondary-dark: #b91c1c;  /* Đỏ cam tối - Độ sâu */
            
            /* Accent Colors - Màu nhấn */
            --accent: #f59e0b;        /* Vàng cam - Ấm áp, thân thiện */
            --accent-light: #fbbf24;   /* Vàng cam nhạt - Tươi sáng */
            --accent-dark: #d97706;    /* Vàng cam tối - Độ sâu */
            
            /* Neutral Colors - Màu trung tính (CareerFoundry style) */
            --white: #ffffff;         /* Trắng tinh khiết */
            --light: #f8fafc;         /* Xám rất nhạt - Nền sạch */
            --light-gray: #e2e8f0;    /* Xám nhạt - Viền, phân cách */
            --gray: #64748b;          /* Xám trung bình - Text phụ */
            --dark-gray: #475569;     /* Xám đậm - Text chính */
            --text: #1e293b;          /* Xanh đen - Text chính */
            
            /* Background Colors - Màu nền (Đồng bộ #FFF6E9) */
            --bg-primary: #FFF6E9;     /* Nền chính - Kem nhạt ấm áp */
            --bg-secondary: #FFF6E9;   /* Nền phụ - Kem nhạt ấm áp */
            --bg-accent: #fef3c7;      /* Nền nhấn - Vàng rất nhạt */
            
            /* Shadow Colors - Màu bóng */
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.15);
            
            /* Gradient Colors - Màu gradient (CareerFoundry style) */
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        }

        body {
    font-family: "TikTok Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text);
    font-weight: 400;
    font-display: swap;
    background-color: var(--bg-primary);
}

/* Sections */
.section {
    padding: clamp(3rem, 8vw, 5rem) 5%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--light-gray);
}

.section:nth-child(even) {
    background-color: var(--bg-primary);
}

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

.container {
            margin: 0 auto;
            max-width: 1200px;
}

.section-title {
            text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

/* Button Styles */
        .btn {
            padding: 1rem 1rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px var(--shadow-light);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
        }

/* Responsive Media Queries */
@media (max-width: 48em) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
        .section {
        padding: clamp(2rem, 6vw, 3rem) 3%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
    }
    
    .btn {
        padding: 0.875rem 1rem;
            font-size: 0.9rem;
        }

        .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
}





/* Navigation Buttons và Dots đã được di chuyển vào testimonials.css */











        