@charset "UTF-8";

/* =========================================
   1. BASE (Biến & Reset)
   ========================================= */
@font-face {
    font-family: 'Futura';               /* Tên bạn tự đặt để gọi sau này */
    src: url('../fonts/Futura\ Medium.otf') format('otf'); /* Đường dẫn file */                  /* Khai báo đây là kiểu đậm */
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* --- Colors --- */
    --c-text-main: #00146E;
    --c-text-white: #FFFFFF;
    --c-bg-body: #FFFFFF;

    /* --- Fonts --- */
    /* Bạn nhớ cài font Futura vào máy hoặc import nhé */
    --f-en: 'Futura', sans-serif; 
    --f-jp: 'Sawarabi Gothic', sans-serif;

    /* --- Font Sizes (Mobile Base) --- */
    --fs-10: 10px;
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-62: 62px;

    /* --- Spacing --- */
    --sp-padding-side: 15px; 

    /* Header height */
    --head-height: 48px;
}

/* Reset cơ bản */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

body {
    font-family: var(--f-jp);
    font-size: var(--fs-12);
    color: var(--c-text-main);
    background-color: var(--c-bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

button {
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

/* Utility Class */
.u-font-futura { font-family: var(--f-en); font-weight: 700; }
.u-uppercase { text-transform: uppercase; }


.contact .notes__group:last-child {
    padding-bottom: 50px;
}

.contact .notes__main-title {
    font-family: var(--f-en);
    font-weight: 900;
    color: var(--c-text-main);
}

.contact .notes__group:last-child {
    padding-bottom: 50px;
}