/**
 * Wootech Landing Core - Base CSS
 */

/* Mặc định hành vi cuộn HTML mượt mà (Dự phòng cho JS) */
html {
    scroll-behavior: smooth;
}

/* Cài đặt Body chuẩn chung cho mọi dự án */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Image mặc định */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tiện ích Container */
.wt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ẩn dấu cuộn màn hình trên một số section ẩn (tuỳ chọn) */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
