@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "TikTok Sans", sans-serif;
}

/*---------------------*/
/* BODY AND BACKGROUND */
/*---------------------*/

body {
    display: flex;
    min-height: 100vh;
    background: url('images/Draft\ Web.png') no-repeat;
    background-size: cover;
    background-position: center;
    flex-direction: column;
    animation: fadeInPage 0.8s ease-in-out;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*---------------------*/
/* NAVBAR */
/*---------------------*/

.navbar {
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.navbar .logo-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-name .logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-name a {
    text-decoration: none;
}

.logo-name .name {
    font-size: 23px;
    font-weight: bold;
    color: #082a44;
}

.navbar .search-box {
    flex: 1;
    display: flex;
    max-width: 300px;
    margin: 0 0 0 20px;
}

.search-box input {
    width: 100%;
    padding: 8px;
    border-radius: 20px 0 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.search-box button {
    background: #082a44;
    border: none;
    padding: 8px 12px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.lang-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 40px;
}

.lang-label {
    color: #082a44; 
    font-weight: bold;
    font-size: 14px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Thanh trượt (nền) */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #082a44; /* Màu xanh thương hiệu của bạn */
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.navbar .menu {
    display: flex;
    gap: 50px;
    margin-left: auto;
    align-items: center; /* căn giữa theo chiều dọc */
}

.navbar .menu a {
    text-decoration: none;
    color: #082a44;
    font-weight: bold;
    font-size: 21px;
    position: relative;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.navbar .menu a:hover {
    text-decoration: underline;
    transform: translateY(-3px);  
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); 
}

.menu a.signup {
    color: #fff;
    text-decoration: underline;
}

.menu a.home {
    color: #fff;
    text-decoration: underline;
}

.menu a.quicktest {
    color: #fff;
    text-decoration: underline;
}

.menu a.blog {
    color: #fff;
    text-decoration: underline;
}

.menu a.aboutus {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .lang-switch-wrapper {
        margin: 0 20px;
    }

    .lang-label {
        font-size: 12px;
    }

    .switch {
        width: 40px;
    }

    .lang-switch {
        margin: 0 10px; 
    }

    input:checked + .slider:before {
        transform: translateX(14px);
    }

    .navbar {
        padding: 15px 15px;
    }

    .logo-name .logo {
        height: 35px;
    }

    .logo-name .name {
        font-size: 16px;
    }

    .navbar .search-box {
        margin: 0 0 0 20px;
    }

    .navbar .menu {
        gap: 15px;
    }

    .navbar .menu a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .lang-switch-wrapper {
        margin: 0 15px;
    }

    .lang-label {
        font-size: 11px;
    }

    .switch {
        width: 40px;
    }

    .lang-switch {
        margin: 0 10px; 
    }

    .navbar {
        padding: 12px 12px;
    }

    .logo-name .logo {
        height: 30px;
    }

    .logo-name .name {
        font-size: 14px;
    }

    .navbar .search-box {
        margin: 0 0 0 15px;
    }

    .navbar .menu {
        gap: 10px;
    }

    .navbar .menu a {
        font-size: 13px;
    }

    .navbar .menu a:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .lang-switch-wrapper {
        gap: 3px;
        margin: 0 10px;
    }

    .lang-label {
        font-size: 6px;
    }

    .lang-switch {
        margin: 0 10px; 
    }

    .switch {
        width: 30px;
        height: 20px;
    }

    .slider:before {
        height: 14px;
        width: 14px;
    }

    input:checked + .slider:before {
        transform: translateX(11px);
    }

    .navbar {
        padding: 10px 10px;
    }

    .logo-name .logo {
        height: 20px;
    }

    .logo-name .name {
        font-size: 10px;
    }

    .navbar .search-box {
        margin: 0 0 0 10px;
        height: 20px;
    }

    .search-box button {
        padding: 8px 6px;
    }

    .navbar .menu {
        gap: 6px;
    }

    .navbar .menu a {
        font-size: 7px;
    }

    .navbar .menu a:hover {
        transform: translateY(-1px);
    }
}

/*---------------------*/
/* HOME */
/*---------------------*/

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.center h1 {
    color: #fff;
    font-size: 90px;
    font-weight: 750;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.center h1 a {
    text-decoration: none;
    color: #fff
}

.center h1:hover {
    transform: translateY(-2px);  
    text-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); 
}

.center h3 {
    font-size: 40px;
    font-weight: 600;
    white-space: normal;
}

@media (min-width: 650px) {
    .center h3 {
        white-space: nowrap; /* ép slogan luôn 1 hàng */
    }
}

.center h5 {
    font-size: 25px;
    font-weight: 500;
    margin-top: 10px;
}

.center .btn {
    font-size: 20px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    background: #082a44;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 20px auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.center .btn:hover {
    transform: translateY(-2px);  
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 480px){
    .center h1 {
        font-size: 60px;
    }

    .center h1:hover {
        transform: translateY(-1px);  
    }

    .center h3 {
        font-size: 25px;
    }

    .center h5 {
        font-size: 18px;
        font-weight: 500;
        margin-top: 10px;
    }

    .center .btn {
        font-size: 16px;
        padding: 10px 18px;
        margin: 10px auto;
    }

    .center .btn:hover {
        transform: translateY(-1px);
    }
}

/* ABOUT US */
.elephant {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.elephant .ele {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(50%) hue-rotated(170deg) saturate(20%);
    z-index: 0;
}

.elephant::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 125, 197, 0.361); 
    pointer-events: none; 
}

.elephant .title-aboutus {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    color: #082a44;
    position: absolute;
    top: 32%;
    left: 22%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-block;
    text-align: center;
}

.quote {
    color: #082a44;
    text-align: center;
    margin-top: 40px;
}

.quote p {
    font-size: 28px;
    font-weight: 400;
}

.quote p .highlight {
    font-weight: 700;
}
    
.info-ele {
    color: #082a44;
    margin: 40px auto 40px auto;
}

.info-ele h4 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 700;
}

.info-ele p {
    font-size: 22px;
    font-weight: 400;
    margin-top: 10px;
}

.info-ele .highlight {
    font-weight: 700;
}

.info-ele .about-us, .about-the-name, .vision-message {
    width: 85%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #082a44;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: justify;
}

.info-ele .about-us, .about-the-name {
    margin: 0px auto 35px auto;
}

.info-ele .vision-message {
    margin: 0px auto 10px auto;
}

@media (max-width: 1024px) {
    .elephant {
        height: 500px;
    }

    .elephant .title-aboutus {
        font-size: 64px;
        top: 35%;
        left: 24%;
    }

    .quote {
        margin-top: 32px;
    }

    .quote p {
        font-size: 24px;
    }
        
    .info-ele {
        margin: 32px auto 32px auto;
    }

    .info-ele h4 {
        font-size: 45px;
    }

    .info-ele p {
        font-size: 18px;
        margin-top: 8px;
    }

    .info-ele .about-us, .about-the-name {
        margin: 0px auto 30px auto;
    }

    .info-ele .vision-message {
        margin: 0px auto 10px auto;
    }
}

@media (max-width: 768px) {
    .elephant {
        height: 500px;
    }

    .elephant .title-aboutus {
        font-size: 64px;
        top: 35%;
        left: 24%;
    }

    .quote {
        margin-top: 32px;
    }

    .quote p {
        font-size: 24px;
    }
        
    .info-ele {
        margin: 32px auto 32px auto;
    }

    .info-ele h4 {
        font-size: 45px;
    }

    .info-ele p {
        font-size: 18px;
        margin-top: 8px;
    }

    .info-ele .about-us, .about-the-name {
        padding: 12px 20px;
    }

    .info-ele .vision-message {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .elephant {
        height: 200px;
    }

    .elephant .title-aboutus {
        font-size: 35px;
        top: 35%;
        left: 28%;
    }

    .quote {
        margin-top: 18px;
    }

    .quote p {
        font-size: 16px;
    }
        
    .info-ele {
        margin: 18px auto 18px auto;
    }

    .info-ele h4 {
        font-size: 28px;
    }

    .info-ele p {
        font-size: 16px;
        margin-top: 7px;
    }

    .info-ele .about-us, .about-the-name, .vision-message {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 20px;
        gap: 15px;
    }

    .info-ele .about-us, .about-the-name {
        margin: 0px auto 20px auto;
    }

    .info-ele .vision-message {
        margin: 0px auto 10px auto;
    }
}

/*---------------------*/
/* QUICK TEST */
/*---------------------*/

.q-test .title-quicktest {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    position: relative;
    margin-top: 100px;    /* đẩy xuống dưới navbar */
    text-align: center;
    color: #082a44;
}

.theme-box-quicktest {
    margin: auto;
    margin-top: 20px;
    width: 85%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #082a44;
    border-radius: 15px;
    padding: 20px 30px;
}

.theme-box-quicktest h5 {
    font-size: 20px;
}

.theme-box-quicktest h4 {
    font-weight: 500;
    margin-top: 20px;
}

.theme-box-quicktest h3 {
    font-size: 25px;
    font-weight: 530;
    margin-top: 20px;
}

.theme-box-quicktest h2 {
    font-size: 55px;
    font-weight: 700;
}

.theme-box-quicktest .instructions {
    font-size: 23px;
}

.theme-box-quicktest li {
    margin-left: 20px;
}

.theme-box-quicktest .btn {
    font-size: 22px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    background: #082a44;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 25px auto 10px auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.theme-box-quicktest .btn:hover {
    transform: translateY(-2px);  
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.info-test {
    width: 85%;
    margin: 30px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Tạo khoảng cách đều nhau */
    gap: 20px;
}

.info-test .theme-box-info-1, .theme-box-info-2, .theme-box-info-3 {
    flex: 0 0 1;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #082a44;
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 15px;
}

.theme-box-info-1 h3, .theme-box-info-2 h3, .theme-box-info-3 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 700;
}

.theme-box-info-1 p, .theme-box-info-2 p, .theme-box-info-3 p {
    font-size: 22px;
    font-weight: 400;
    text-align: justify;
    margin-top: 10px;
}

.theme-box-info-3 p .highlight {
    font-weight: 700;
}

.info-test .discover-spending {
    flex: 1 1 100%;
    text-align: center;
    color: #082a44;
}

.discover-spending h3 {
    font-size: 50px;
    font-weight: 700;
}

.discover-spending h4 {
    font-size: 38px;
    font-weight: 600;
}

.discover-spending h5 {
    font-size: 31px;
    font-weight: 500;
}

.info-test .discover-spending .btn {
    font-size: 22px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    background: #082a44;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: fit-content;
    margin: 30px auto 40px auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.info-test .btn:hover {
    transform: translateY(-2px);  
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.contact-info {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    height: 270px;
    margin-top: auto;
}

.contact-left, .contact-center, .contact-right {
    flex: 1;
    text-align: center;
    color: white;
}

.contact-left {
    text-align: left;
    padding-top: 70px;
    margin-left: 20px;
}

.contact-left .logo-name {
    display: flex;
    align-items: center;
}

.contact-left .logo-name .logo {
    height: 90px;
    width: auto;
}

.contact-left .logo-name .name {
    color: white;
    font-size: 30px;
}

.contact-left .phone-email {
    margin-top: 10px;
}

.contact-left .phone-email p {
    margin-top: 5px;
}

.contact-left p a {
    text-decoration: none;
    color: white;
}

.contact-left p a:hover {
    text-decoration: underline;
}

.contact-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-center h3 {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.contact-right {
    text-align: right;
    padding-top: 110px;
    margin-right: 20px;
}

.contact-right .menu {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: right;
}

.contact-right .menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    position: relative;
}

.contact-right .menu a:hover {
    text-decoration: underline;
}

.contact-right input {
    padding: 8px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    width: 300px;
}

@media (max-width: 1024px) {
    .q-test .title-quicktest {
        font-size: 64px;
        margin-top: 80px;
    }

    .theme-box-quicktest {
        margin-top: 20px;
        padding: 18px 28px;
    }

    .theme-box-quicktest h5 {
        font-size: 17px;
    }

    .theme-box-quicktest h4 {
        font-weight: 500;
        margin-top: 15px;
    }

    .theme-box-quicktest h3 {
        font-size: 23px;
        margin-top: 15px;
    }

    .theme-box-quicktest h2 {
        font-size: 45px;
    }

    .theme-box-quicktest .instructions {
        font-size: 20px;
    }

    .theme-box-quicktest li {
        margin-left: 18px;
    }

    .theme-box-quicktest .btn {
        font-size: 18px;
        padding: 12px 23px;
        margin: 20px auto 6px auto;
    }

    .info-test {
        margin: 24px auto 0 auto;
        gap: 16px;
    }

    .info-test .theme-box-info-1, .theme-box-info-2, .theme-box-info-3 {
        padding: 18px 28px;
        margin-top: 15px;
    }

    .theme-box-info-1 h3, .theme-box-info-2 h3, .theme-box-info-3 h3 {
        font-size: 45px;
    }

    .theme-box-info-1 p, .theme-box-info-2 p, .theme-box-info-3 p {
        font-size: 18px;
        margin-top: 8px;
    }

    .discover-spending h3 {
        font-size: 40px;
    }

    .discover-spending h4 {
        font-size: 31px;
    }

    .discover-spending h5 {
        font-size: 25px;
    }

    .info-test .discover-spending .btn {
        font-size: 18px;
        padding: 12px 23px;
        margin: 24px auto 32px auto;
    }

    .contact-info {
        height: 250px;
    }

    .contact-left {
        padding-top: 60px;
        margin-left: 10px;
    }

    .contact-left .logo-name .logo {
        height: 75px;
    }

    .contact-left .logo-name .name {
        font-size: 23px;
    }

    .contact-left .phone-email {
        margin-top: 10px;
    }

    .contact-left .phone-email p {
        margin-top: 5px;
        font-size: 13px;
    }

    .contact-center h3 {
        font-size: 45px;
    }

    .contact-right {
        margin-right: 10px;
        padding-top: 90px;
    }

    .contact-right .menu {
        gap: 8px;
    }

    .contact-right .menu a {
        font-size: 13px;
    }

    .contact-right input {
        padding: 8px;
        width: 170px;
    }
}

@media (max-width: 768px) {
    .q-test .title-quicktest {
        font-size: 60px;
    }

    .theme-box-quicktest h5 {
        font-size: 17px;
    }

    .theme-box-quicktest h4 {
        font-weight: 500;
        margin-top: 18px;
    }

    .theme-box-quicktest h3 {
        font-size: 20px;
        margin-top: 18px;
    }

    .theme-box-quicktest h2 {
        font-size: 42px;
        font-weight: 700;
    }

    .theme-box-quicktest .instructions {
        font-size: 18px;
    }

    .theme-box-quicktest li {
        margin-left: 18px;
    }

    .theme-box-quicktest .btn {
        font-size: 17px;
        margin: 22px auto 8px auto;
    }

    .info-test {
        margin: 25px auto 0 auto;
        gap: 20px;
    }

    .info-test .theme-box-info-1, .theme-box-info-2, .theme-box-info-3 {
        padding: 18px 26px;
        margin-top: 15px;
    }

    .theme-box-info-1 h3, .theme-box-info-2 h3, .theme-box-info-3 h3 {
        font-size: 38px;
    }

    .theme-box-info-1 p, .theme-box-info-2 p, .theme-box-info-3 p {
        font-size: 17px;
        margin-top: 9px;
    }

    .discover-spending h3 {
        font-size: 42px;
    }

    .discover-spending h4 {
        font-size: 32px;
    }

    .discover-spending h5 {
        font-size: 26px;
    }

    .info-test .discover-spending .btn {
        font-size: 22px;
        margin: 25px auto 35px auto;
    }
    
    .contact-info {
        height: 200px;
    }

    .contact-left, .contact-center, .contact-right {
        flex: 1;
        text-align: center;
        color: white;
    }

    .contact-left .logo-name .logo {
        height: 55px;
        width: auto;
    }

    .contact-left .logo-name .name {
        color: white;
        font-size: 18px;
    }

    .contact-left {
        text-align: left;
        padding-top: 45px;
    }

    .contact-left .phone-email {
        margin-top: 8px;
    }

    .contact-left .phone-email p {
        margin-top: 3px;
        font-size: 10px;
    }

    .contact-center h3 {
        font-size: 40px;
    }

    .contact-right {
        text-align: right;
        padding-top: 60px;
    }

    .contact-right .menu {
        margin-top: 15px;
        gap: 7px;
    }

    .contact-right .menu a {
        font-size: 11px;
    }

    .contact-right input {
        padding: 5px;
        height: 30px;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .q-test .title-quicktest {
        font-size: 35px;
        margin-top: 50px;
    }

    .theme-box-quicktest {
        margin-top: 10px;
        border-radius: 15px;
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .theme-box-quicktest h5 {
        font-size: 12px;
    }

    .theme-box-quicktest h4 {
        font-weight: 500;
        margin-top: 10px;
    }

    .theme-box-quicktest h3 {
        font-size: 16px;
        font-weight: 530;
        margin-top: 8px;
    }

    .theme-box-quicktest h2 {
        font-size: 28px;
        font-weight: 700;
    }

    .theme-box-quicktest .instructions {
        font-size: 16px;
    }

    .theme-box-quicktest li {
        margin-left: 12px;
    }

    .theme-box-quicktest .btn {
        font-size: 16px;
        padding: 10px 18px;
        margin: 12px auto 5px auto;
    }

    .theme-box-quicktest .btn:hover {
        transform: translateY(-1px);
    }

    .info-test {
        margin: 12px auto 0 auto;
        gap: 8px;
    }

    .info-test .theme-box-info-1, .theme-box-info-2, .theme-box-info-3 {
        flex: 0 0 1;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 20px;
        margin-top: 15px;
    }

    .theme-box-info-1 h3, .theme-box-info-2 h3, .theme-box-info-3 h3 {
        font-size: 28px;
    }

    .theme-box-info-1 p, .theme-box-info-2 p, .theme-box-info-3 p {
        font-size: 16px;
        margin-top: 5px;
    }

    .discover-spending h3 {
        font-size: 26px;
        font-weight: 700;
    }

    .discover-spending h4 {
        font-size: 22px;
        font-weight: 600;
    }

    .discover-spending h5 {
        font-size: 18px;
        font-weight: 500;
    }

    .info-test .discover-spending .btn {
        font-size: 15px;
        font-weight: 500;
        padding: 10px 18px;
        margin: 10px auto 20px auto;
    }

    .info-test .btn:hover {
        transform: translateY(-1px);
    }

    .contact-info {
        padding: 10px 10px;
        height: 125px;
    }

    .contact-left {
        padding-top: 35px;
        margin-left: 5px;
    }

    .contact-left .logo-name .logo {
        height: 25px;
    }

    .contact-left .logo-name .name {
        font-size: 10px;
    }

    .contact-left .phone-email {
        margin-top: 5px;
    }

    .contact-left .phone-email p {
        margin-top: 2px;
        font-size: 7px;
    }

    .contact-center h3 {
        font-size: 21px;
    }

    .contact-right {
        padding-top: 35px;
        margin-right: 5px;
    }

    .contact-right .menu {
        margin-top: 10px;
        gap: 5px;
    }

    .contact-right .menu a {
        font-size: 7px;
    }

    .contact-right input {
        padding: 5px;
        width: 70px;
        height: 20px;
    }
}

/*---------------------*/
/* INSTRUCTIONS BEFORE TEST */
/*---------------------*/

.instructions-bf-test {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    margin: auto;
    width: 85%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #082a44;
    border-radius: 15px;
    padding: 20px 30px;
}

.instructions-bf-test h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
}

.instructions-bf-test ul {
    font-size: 25px;
    font-weight: 400;
    padding-left: 20px;
    text-align: justify;
}

.instructions-bf-test ul li {
    margin-top: 10px;
}

.instructions-bf-test .btn {
    font-size: 20px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    background: #082a44;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 20px auto 10px auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.instructions-bf-test .btn:hover {
    transform: translateY(-2px);  
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 1024px) {
    .instructions-bf-test {
        padding: 18px 27px;
    }

    .instructions-bf-test h1 {
        font-size: 54px;
    }

    .instructions-bf-test ul {
        font-size: 23px;
        padding-left: 18px;
    }

    .instructions-bf-test ul li {
        margin-top: 9px;
    }

    .instructions-bf-test .btn {
        font-size: 18px;
        padding: 11px 25px;
        margin: 18px auto 9px auto;
    }

    .instructions-bf-test .btn:hover {
        transform: translateY(-2px);  
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    }
}

@media (max-width: 768px) {
    .instructions-bf-test {
        padding: 14px 20px;
    }

    .instructions-bf-test h1 {
        font-size: 40px;
    }

    .instructions-bf-test ul {
        font-size: 17px;
        padding-left: 14px;
    }

    .instructions-bf-test ul li {
        margin-top: 7px;
    }

    .instructions-bf-test .btn {
        font-size: 14px;
        padding: 8px 18px;
        margin: 14px auto 7px auto;
    }

    .instructions-bf-test .btn:hover {
        transform: translateY(-1px);  
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    }
}

@media (max-width: 480px) {
    .instructions-bf-test {
        padding: 8px 13px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .instructions-bf-test h1 {
        font-size: 25px;
    }

    .instructions-bf-test ul {
        font-size: 11px;
        padding-left: 9px;
    }

    .instructions-bf-test ul li {
        margin-top: 4px;
    }

    .instructions-bf-test .btn {
        font-size: 9px;
        padding: 5px 11px;
        margin: 9px auto 4px auto;
    }

    .instructions-bf-test .btn:hover {
        transform: translateY(-1px);  
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    }
}

/*---------------------*/
/* MANAGING */
/*---------------------*/
.classify {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: justify;
    width: 85%;
    color: #082a44;
}

.classify h5 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

.classify .answer-classify {
    font-size: 30px;
    font-weight: 400;
}

.classify a {
    font-size: 25px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    background: #082a44;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 20px auto 10px auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.classify a:hover {
    transform: translateY(-2px);  
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 1024px) {
    .classify h5 {
        font-size: 36px;
        margin-bottom: 27px;
    }

    .classify .answer-classify {
        font-size: 27px;
    }

    .classify a {
        font-size: 23px;
        padding: 11px 25px;
        margin: 18px auto 9px auto;
    }
}

@media (max-width: 768px) {
    .classify h5 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .classify .answer-classify {
        font-size: 20px;
    }

    .classify a {
        font-size: 17px;
        padding: 8px 19px;
        margin: 14px auto 7px auto;
    }

    .classify a:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .classify h5 {
        font-size: 17px;
        margin-bottom: 13px;
    }

    .classify .answer-classify {
        font-size: 13px;
    }

    .classify a {
        font-size: 11px;
        padding: 5px 12px;
        margin: 9px auto 4px auto;
    }

    .classify a:hover {
        transform: translateY(-1px);
    }
}

/*---------------------*/
/* MAIN TEST */
/*---------------------*/
.body1 {
    background: url('images/Draft\ Web.png') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: left;
    color: #082a44;
    flex-wrap: wrap;
}

.body1 .main-test {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    position: relative;    
    margin-top: 70px;
    margin-left: 89px;
    text-align: left;
    color: #082a44;
}

.body1 .container {
    flex: 1;
    max-width: 72%;
    padding: 30px 30px 30px 50px;
}

.question1, .question2, .question3, .question4, .question5, .question6, .question7, .question8, .question9, .question10 {
    background: #082a44; 
    color: white; 
    font-weight: bold; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-radius: 50%; 
    margin: 30px 0 15px 0;
}

.question-box .income p, .expenditure p, .savings p {
    font-family: "TikTok Sans", sans serif;
    font-size: 25px;
    font-weight: 650;
    margin-bottom: 10px;
}

.question-box .slider-container {
    margin-top: 10px;
}

input[type=range] { 
    width: 100%; 
}

.slider-labels {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.question-choice {
    width: auto;
    position: fixed;
    top: 60%;
    right: 50px;
    transform: translateY(-100%);
    background: rgba(255, 255, 255, 0.1); 
    background-color: transparent;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px 30px;
    color: #082a44;
    z-index: 1000;
}

.question-choice h5 {
    text-align: left;
    font-size: 15px;
}

.question-choice h2 {
    text-align: left;
    font-size: 25px;
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-top: 20px;
    width: 100%; 
} 

.grid button { 
    width: 50px; 
    height: 50px; 
    border: none; 
    border-radius: 50%; 
    background: #082a44; 
    color: white; 
    font-weight: 600;
    font-size: 15px; 
    cursor: pointer; 
    transition: 0.2s ease, text-shadow 0.2 ease;
} 

.grid button:hover {
    background: #4e8fe4;
    transform: scale(1.05);
}

.grid button.active { 
    background: #4e8fe4; 
} 

.submit-btn { 
    background: #082a44; 
    color: white; 
    border: none; 
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer; 
    width: 100%;
    margin: 15px auto 0px auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: scale(1.01);
}

@media (max-width: 1024px) {
    .body1 .main-test {
        font-size: 64px;  
        margin-top: 56px;
        margin-left: 30px;
    }

    .body1 .container {
        max-width: 70%;
        padding: 24px 24px 24px 35px;
    }

    .question1, .question2, .question3, .question4, .question5, .question6, .question7, .question8, .question9, .question10 {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin: 24px 0 12px 0;
    }

    .question-box .income p, .expenditure p, .savings p {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .question-box .slider-container {
        margin-top: 8px;
    }

    .slider-labels {
        font-size: 15px;
        font-weight: 600;
    }

    .range-value {
        font-size: 15px;
    }

    .question-choice {
        top: 62%;
        right: 35px;
        padding: 16px 24px;
    }

    .question-choice h5 {
        font-size: 12px;
    }

    .question-choice h2 {
        font-size: 20px;
    }

    .grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
        gap: 12px;
        margin-top: 16px;
    } 

    .grid button { 
        width: 44px; 
        height: 44px;
        font-size: 12px;
    }

    .submit-btn {
        padding: 10px 23px;
        font-size: 14px;
        margin: 12px auto 0px auto;
    }
}

@media (max-width: 844px) {
    .body1 .main-test {
        font-size: 48px;  
        margin-top: 48px;
        margin-left: 18px;
    }

    .body1 .container {
        max-width: 70%;
        padding: 18px 18px 18px 27px;
    }

    .question1, .question2, .question3, .question4, .question5, .question6, .question7, .question8, .question9, .question10 {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin: 18px 0 9px 0;
    }

    .question-box .income p, .expenditure p, .savings p {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .question-box .slider-container {
        margin-top: 6px;
    }

    .slider-labels {
        font-size: 12px;
    }

    .range-value {
        font-size: 12px;
    }

    .question-choice {
        top: 80%;
        right: 27px;
        border-radius: 10px;
        padding: 12px 18px;
    }

    .question-choice h5 {
        font-size: 9px;
    }

    .question-choice h2 {
        font-size: 15px;
    }

    .grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(33px, 1fr));
        gap: 9px;
        margin-top: 12px;
    } 

    .grid button { 
        width: 33px; 
        height: 33px;
        font-size: 9px;
    }

    .submit-btn {
        padding: 8px 17px;
        font-size: 11px;
        margin: 9px auto 0px auto;
    }
}

@media (max-width: 768px) {
    .body1 .main-test {
        font-size: 48px;  
        margin-top: 46px;
        margin-left: 18px;
    }

    .body1 .container {
        max-width: 70%;
        padding: 18px 18px 18px 27px;
    }

    .question1, .question2, .question3, .question4, .question5, .question6, .question7, .question8, .question9, .question10 {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin: 18px 0 9px 0;
    }

    .question-box .income p, .expenditure p, .savings p {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .question-box .slider-container {
        margin-top: 6px;
    }

    .slider-labels {
        font-size: 12px;
    }

    .range-value {
        font-size: 12px;
    }

    .question-choice {
        top: 60%;
        right: 27px;
        border-radius: 10px;
        padding: 12px 18px;
    }

    .question-choice h5 {
        font-size: 9px;
    }

    .question-choice h2 {
        font-size: 15px;
    }

    .grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(33px, 1fr));
        gap: 9px;
        margin-top: 12px;
    } 

    .grid button { 
        width: 33px; 
        height: 33px;
        font-size: 9px;
    }

    .submit-btn {
        padding: 8px 17px;
        font-size: 11px;
        margin: 9px auto 0px auto;
    }
}

@media (max-width: 480px) {
    .body1 .main-test {
        font-size: 24px;  
        margin-top: 36px;
        margin-left: 0px;
    }

    .body1 .container {
        max-width: 64%;
        padding: 11px 11px 11px 17px;
    }

    .question1, .question2, .question3, .question4, .question5, .question6, .question7, .question8, .question9, .question10 {
        width: 20px;
        height: 20px;
        font-size: 9px;
        margin: 14px 0 8px 0;
    }

    .question-box .income p, .expenditure p, .savings p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .question-box .slider-container {
        margin-top: -5px;
        margin-bottom: 0px;
    }

    .slider-labels {
        font-size: 10px;
        margin-top: -2px;
    }

    .range-input {
        width: 100%;
        height: 6px;
        cursor: pointer;
    }

    .range-value {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .question-choice {
        top: 60%;
        right: 17px;
        border-radius: 6px;
        padding: 8px 11px;
    }

    .question-choice h5 {
        font-size: 7px;
    }

    .question-choice h2 {
        font-size: 10px;
    }

    .grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(24px, 1fr));
        gap: 6px;
        margin-top: 8px;
    } 

    .grid button { 
        width: 24px; 
        height: 24px;
        font-size: 8px;
    }

    .submit-btn {
        padding: 6px 11px;
        font-size: 9px;
        margin: 6px auto 0px auto;
    }
}

/*---------------------*/
/* LOADING EFFECT */
/*---------------------*/
#loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Nền trắng mờ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #082a44; /* Màu thương hiệu */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Class để ẩn loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/*---------------------*/
/* MAIN TEST RESULTS */
/*---------------------*/
#resultType {
    font-family: TikTok Sans, sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: #082a44;
    text-align: center;
    margin: 80px 120px 50px 120px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px 30px;
}

#resultDesc {
    font-family: TikTok Sans, sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #082a44;
    text-align: justify;
    margin: 0 120px 30px 120px;
}

#summary {
    font-family: TikTok Sans, sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #082a44;
    text-align: justify;
    margin: 0 120px 50px 120px;
}

#summary b {
    font-family: TikTok Sans, sans-serif;
}

#needs, #wants, #savings {
    font-family: TikTok Sans, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #082a44;
}

#spendingChart {
    max-width: 500px;
    width: 80%;
    height: auto;
    margin: 30px auto 50px; /* 150px để chừa chỗ cho footer */
}

@media (max-width: 1024px) {
    #resultType {
        font-size: 56px;
        margin: 64px 96px 40px 96px;
        border-radius: 15px;
        padding: 16px 24px;
    }

    #resultDesc {
        font-size: 24px;
        margin: 0 96px 24px 96px;
    }

    #summary {
        font-size: 18px;
        margin: 0 96px 40px 96px;
    }

    #needs, #wants, #savings {
        font-size: 16px;
    }

    #spendingChart {
        max-width: 400px;
        width: 80%;
        height: auto;
        margin: 24px auto 40px; /* 150px để chừa chỗ cho footer */
    }
}

@media (max-width: 768px) {
    #resultType {
        font-size: 42px;
        margin: 48px 72px 30px 72px;
        border-radius: 11px;
        padding: 12px 18px;
    }

    #resultDesc {
        font-size: 18px;
        margin: 0 72px 18px 72px;
    }

    #summary {
        font-size: 13px;
        margin: 0 72px 30px 72px;
    }

    #needs, #wants, #savings {
        font-size: 12px;
    }

    #spendingChart {
        max-width: 500px;
        width: 80%;
        height: auto;
        margin: 18px auto 30px; /* 150px để chừa chỗ cho footer */
    }
}

@media (max-width: 480px) {
    #resultType {
        font-size: 24px;
        margin: 32px 38px 24px 38px;
        border-radius: 11px;
        padding: 12px 18px;
    }

    #resultDesc {
        font-size: 18px;
        margin: 0 38px 4px 38px;
    }

    #summary {
        font-size: 10px;
        margin: 0 38px 24px 38px;
    }

    #needs, #wants, #savings {
        font-size: 10px;
    }

    #spendingChart {
        max-width: 500px;
        width: 80%;
        height: auto;
        margin: 12px auto 24px; /* 150px để chừa chỗ cho footer */
    }
}
/*---------------------*/
/* BLOG */
/*---------------------*/

.blog-img {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.blog-img .stocks {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(50%) hue-rotated(170deg) saturate(20%);
    z-index: 0;
}

.blog-img .title-blog {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    color: white;
    position: absolute;
    top: 32%;
    left: 18%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-block;
    text-align: center;
}

.blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 125, 197, 0.361); 
    pointer-events: none; 
}

.blog-container, 
.blog-container * {
    box-sizing: border-box;
}

.blog-container {
    max-width: 100%;
    margin: 40px 20px;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

@media (max-width: 1024px) {
    .blog-img {
        height: 500px;
    }

    .blog-img .title-blog {
        font-size: 64px;
        top: 35%;
        left: 18%;
    }
    
    .blog-grid {
        gap: 40px;
        grid-template-columns: repeat(2, 1fr); /* 1 cột duy nhất */
    }
}

@media (max-width: 768px) {
    .blog-img {
        height: 400px;
    }

    .blog-img .title-blog {
        font-size: 64px;
        top: 35%;
        left: 22%;
    }
}

@media (max-width: 650px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 cột duy nhất */
    }
}

@media (max-width: 480px) {
    .blog-img {
        height: 200px;
    }

    .blog-img .title-blog {
        font-size: 35px;
        top: 35%;
        left: 22%;
    }
}

.blog-card {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-2px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); 
}

.blog-card .card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    margin-bottom: 10px;
}

.blog-card a {
    display: block;
    text-decoration: none;
    color: #082a44;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.blog-card .card-title h3 {
    margin-top: 10px;
    font-size: 18px;
}

.blog-card .card-title p {
    font-size: 15px;
}

/*---------------------*/
/* BLOG-1 */
/*---------------------*/
.intro-blog {
    margin: 100px 100px 20px 100px;
    color: #082a44;
}

.intro-blog .title-blog-1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    position: relative;
    text-align: center;
    color: #082a44;
    margin-bottom: 20px;
}

.intro-blog p {
    font-size: 30px;
    font-weight: 400;
    text-align: justify;
}

p .highlight {
    font-weight: 700;
}

.team-why {
    color: #082a44;
    max-width: 100%;
    margin: 0px 100px 60px 100px;
}

.team-why .team .team-title, .why .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-bottom: 0px;
    display: table;
    margin: 0 auto;
    margin-bottom: 20px;
}

.team-why .team .team-title::after, .why .why-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #082a44;
    transition: width 0.3s ease-in-out;
}

.team-why .team .team-title:hover::after, .why .why-title:hover::after {
    width: 100%;
    color: #082a44;
}

.team-why .team p {
    font-size: 30px;
    font-weight: 400;
    text-align: justify;
}

.team-why .team .intro-qa, .intro-bt {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 40px 30px;
}

.team-why .team .intro-qa .anh-qa, .intro-bt .anh-bt {
    height: 800px;
    width: auto;
    border-radius: 15px;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.team-why .team .intro-qa .anh-qa:hover, .intro-bt .anh-bt:hover {
    transform: scale(1.01);
}

.team-why .team .intro-qa .intro-line-qa {
    margin-left: 100px;
    text-align: center;
    flex: 1;
}

.intro-line-qa .name-qa, .intro-line-bt .name-bt {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
}

.intro-line-qa .school-1-qa, .intro-line-bt .school-bt {
    font-size: 24px;
    margin-top: 20px;
}

.intro-line-qa .school-2-qa {
    font-size: 24px;
    margin-top: 5px;
}

.intro-line-qa .role-qa, .intro-line-bt .role-bt {
    font-size: 24px;
    margin-top: 10px;
}

.team-why .team .intro-bt .intro-line-bt {
    margin-right: 100px;
    text-align: center;
    flex: 1;
}

.why p {
    font-size: 30px;
    font-weight: 400;
    text-align: justify;
}

.why .words {
    text-align: center;
    font-size: 28px;
    font-weight: 400px;
    font-style: italic;
    margin: 10px auto;
}

.team-why .anh-2-dua {
    height: 700px;
    display: table;
    margin: 0 auto;
    width: auto;
    border-radius: 15px;
    margin-top: 40px;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.team-why .anh-2-dua:hover {
    transform: scale(1.01);
}

@media (max-width: 1024px) {
    .intro-blog {
        margin: 80px 70px 14px 70px;
    }

    .intro-blog .title-blog-1 {
        font-size: 56px;
        margin-bottom: 16px;
    }

    .intro-blog p {
        font-size: 21px;
    }

    .team-why {
        margin: 0px 70px 42px 70px;
    }

    .team-why .team .team-title, .why .why-title {
        font-size: 50px;
        margin-bottom: 14px;
    }

    .team-why .team .team-title::after, .why .why-title::after {
        height: 2px;
        transition: width 0.3s ease-in-out;
    }

    .team-why .team p {
        font-size: 21px;
    }

    .team-why .team .intro-qa, .intro-bt {
        margin: 28px 21px;
    }

    .team-why .team .intro-qa .anh-qa, .intro-bt .anh-bt {
        height: 560px;
    }

    .team-why .team .intro-qa .anh-qa:hover, .intro-bt .anh-bt:hover {
        transform: scale(1.01);
    }

    .team-why .team .intro-qa .intro-line-qa {
        margin-left: 70px;
    }

    .intro-line-qa .name-qa, .intro-line-bt .name-bt {
        font-size: 50px;
    }

    .intro-line-qa .school-1-qa, .intro-line-bt .school-bt {
        font-size: 17px;
        margin-top: 14px;
    }

    .intro-line-qa .school-2-qa {
        font-size: 17px;
        margin-top: 4px;
    }

    .intro-line-qa .role-qa, .intro-line-bt .role-bt {
        font-size: 17px;
        margin-top: 7px;
    }

    .team-why .team .intro-bt .intro-line-bt {
        margin-right: 70px;
    }

    .why p {
        font-size: 21px;
    }

    .why .words {
        font-size: 20px;
        margin: 7px auto;
    }

    .team-why .anh-2-dua {
        height: 500px;
        margin-top: 28px;
    }

    .team-why .anh-2-dua:hover {
        transform: scale(1.01);
    }
}

@media (max-width: 768px) {
    .intro-blog {
        margin: 70px 52px 11px 52px;
    }

    .intro-blog .title-blog-1 {
        font-size: 43px;
        margin-bottom: 9px;
    }

    .intro-blog p {
        font-size: 18px;
    }

    .team-why {
        margin: 0px 52px 31px 52px;
    }

    .team-why .team .team-title, .why .why-title {
        font-size: 38px;
        margin-bottom: 11px;
    }

    .team-why .team .team-title::after, .why .why-title::after {
        height: 2px;
        transition: width 0.2s ease-in-out;
    }

    .team-why .team p {
        font-size: 18px;
    }

    .team-why .team .intro-qa, .intro-bt {
        margin: 21px 16px;
    }

    .team-why .team .intro-qa .anh-qa, .intro-bt .anh-bt {
        height: 420px;
    }

    .team-why .team .intro-qa .anh-qa:hover, .intro-bt .anh-bt:hover {
        transform: scale(1.01);
    }

    .team-why .team .intro-qa .intro-line-qa {
        margin-left: 52px;
    }

    .intro-line-qa .name-qa, .intro-line-bt .name-bt {
        font-size: 38px;
    }

    .intro-line-qa .school-1-qa, .intro-line-bt .school-bt {
        font-size: 15px;
        margin-top: 11px;
    }

    .intro-line-qa .school-2-qa {
        font-size: 15px;
        margin-top: 3px;
    }

    .intro-line-qa .role-qa, .intro-line-bt .role-bt {
        font-size: 15px;
        margin-top: 5px;
    }

    .team-why .team .intro-bt .intro-line-bt {
        margin-right: 52px;
    }

    .why p {
        font-size: 18px;
    }

    .why .words {
        font-size: 17px;
        margin: 4px auto;
    }

    .team-why .anh-2-dua {
        height: 370px;
        margin-top: 21px;
    }

    .team-why .anh-2-dua:hover {
        transform: scale(1.01);
    }
}

@media (max-width: 480px) {
    .intro-blog {
        margin: 44px 32px 7px 32px;
    }

    .intro-blog .title-blog-1 {
        font-size: 27px;
        margin-bottom: 6px;
    }

    .intro-blog p {
        font-size: 15px;
    }

    .team-why {
        margin: 0px 32px 20px 32px;
    }

    .team-why .team .team-title, .why .why-title {
        font-size: 24px;
        margin-bottom: 7px;
    }

    .team-why .team .team-title::after, .why .why-title::after {
        height: 1px;
        transition: width 0.2s ease-in-out;
    }

    .team-why .team p {
        font-size: 15px;
    }

    .team-why .team .intro-qa, .intro-bt {
        margin: 13px 10px;
    }

    .team-why .team .intro-qa .anh-qa, .intro-bt .anh-bt {
        height: 260px;
    }

    .team-why .team .intro-qa .anh-qa:hover, .intro-bt .anh-bt:hover {
        transform: scale(1.01);
    }

    .team-why .team .intro-qa .intro-line-qa {
        margin-left: 32px;
    }

    .intro-line-qa .name-qa, .intro-line-bt .name-bt {
        font-size: 24px;
    }

    .intro-line-qa .school-1-qa, .intro-line-bt .school-bt {
        font-size: 12px;
        margin-top: 7px;
    }

    .intro-line-qa .school-2-qa {
        font-size: 12px;
        margin-top: 2px;
    }

    .intro-line-qa .role-qa, .intro-line-bt .role-bt {
        font-size: 12px;
        margin-top: 3px;
    }

    .team-why .team .intro-bt .intro-line-bt {
        margin-right: 32px;
    }

    .why p {
        font-size: 15px;
    }

    .why .words {
        font-size: 14px;
        margin: 3px auto;
    }

    .team-why .anh-2-dua {
        height: 200px;
        margin-top: 16px;
    }

    .team-why .anh-2-dua:hover {
        transform: scale(1.01);
    }
}

/*---------------------*/
/* BLOG-2 */
/*---------------------*/
.title-blog-2 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    position: relative;
    text-align: center;
    color: #082a44;
    margin-bottom: 20px;
}

.intro-ELEN {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.product-info, .thank-ELEN {
    margin: 0px 100px 50px;
    color: #082a44;
}

.product-info .image-ELEN {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 40px 0px;
}

.product-info .image-ELEN ul {
    color: #082a44;
    font-size: 30px;
    text-align: justify;
    margin-left: 100px;
}

.image-ELEN ul a {
    text-decoration: none;
    font-weight: 600;
    color: #082a44;
    transition: 0.3s;
}

.image-ELEN ul a:hover {
    text-decoration: underline;
    color: white;
}

.product-info .info-ELEN, .thank-ELEN .message-ELEN {
    color: #082a44;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    font-style: italic;
    position: relative;
    display: inline-block;
    display: table;
    margin: 0 auto;
}

.product-info .info-ELEN::after, .thank-ELEN .message-ELEN::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #082a44;
    transition: width 0.3s ease-in-out;
}

.product-info .info-ELEN:hover::after, .thank-ELEN .message-ELEN:hover::after {
    width: 100%;
    color: #082a44;
}

.anh-ELEN-1 {
    height: 600px;
    width: auto;
    border-radius: 15px;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.thank-ELEN .visi-mess-ELEN {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 40px 0px;
}

.visi-mess-ELEN p {
    font-size: 30px;
    text-align: justify;

}

.anh-ELEN-2 {
    position: relative;
    display: inline-block;
    display: table;
    margin: 0 auto;
    margin-left: 100px;
    margin-bottom: 20px;
    height: 500px;
    width: auto;
    border-radius: 15px;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.anh-ELEN-1:hover, .anh-ELEN-2:hover {
    transform: scale(1.01);
}

.thank-ELEN .btn {
    font-size: 25px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    background: #082a44;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    width: fit-content;
    margin: auto;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.thank-ELEN .btn:hover {
    transform: translateY(-2px);  
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 1024px) {
    .title-blog-2 {
        font-size: 56px;
        margin-bottom: 14px;
    }

    .intro-ELEN {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .product-info, .thank-ELEN {
        margin: 0px 70px 35px;
    }

    .product-info .image-ELEN {
        margin: 28px 0px;
    }

    .product-info .image-ELEN ul {
        font-size: 21px;
        margin-left: 70px;
    }

    .product-info .info-ELEN, .thank-ELEN .message-ELEN {
        font-size: 38px;
    }

    .product-info .info-ELEN::after, .thank-ELEN .message-ELEN::after {
        height: 2px;
    }

    .anh-ELEN-1 {
        height: 420px;
        border-radius: 11px;
    }

    .thank-ELEN .visi-mess-ELEN {
        margin: 28px 0px;
    }

    .visi-mess-ELEN p {
        font-size: 21px;
    }

    .anh-ELEN-2 {
        margin-left: 70px;
        margin-bottom: 14px;
        height: 350px;
        border-radius: 11px;
    }

    .thank-ELEN .btn {
        font-size: 18px;
        font-weight: 500;
        padding: 9px 20px;
    }
}

@media (max-width: 768px) {
    .title-blog-2 {
        font-size: 42px;
        margin-bottom: 11px;
    }

    .intro-ELEN {
        font-size: 30px;
        margin-bottom: 11px;
    }

    .product-info, .thank-ELEN {
        margin: 0px 54px 27px;
    }

    .product-info .image-ELEN {
        margin: 22px 0px;
    }

    .product-info .image-ELEN ul {
        font-size: 16px;
        margin-left: 54px;
    }

    .product-info .info-ELEN, .thank-ELEN .message-ELEN {
        font-size: 29px;
    }

    .anh-ELEN-1 {
        height: 320px;
        border-radius: 9px;
    }

    .thank-ELEN .visi-mess-ELEN {
        margin: 21px 0px;
    }

    .visi-mess-ELEN p {
        font-size: 16px;
    }

    .anh-ELEN-2 {
        margin-left: 54px;
        margin-bottom: 11px;
        height: 270px;
        border-radius: 9px;
    }

    .thank-ELEN .btn {
        font-size: 14px;
        padding: 7px 16px;
    }
}

@media (max-width: 480px) {
    .title-blog-2 {
        font-size: 27px;
        margin-bottom: 7px;
    }

    .intro-ELEN {
        font-size: 19px;
        margin-bottom: 7px;
    }

    .product-info, .thank-ELEN {
        margin: 0px 32px 16px;
    }

    .product-info .image-ELEN {
        margin: 13px 0px;
    }

    .product-info .image-ELEN ul {
        font-size: 12px;
        margin-left: 32px;
    }

    .product-info .info-ELEN::after, .thank-ELEN .message-ELEN::after {
        height: 1px;
    }

    .product-info .info-ELEN, .thank-ELEN .message-ELEN {
        font-size: 17px;
    }

    .anh-ELEN-1 {
        height: 200px;
        border-radius: 6px;
    }

    .thank-ELEN .visi-mess-ELEN {
        flex-direction: column;
        margin: 13px 0px;
    }

    .visi-mess-ELEN p {
        font-size: 12px;
    }

    .anh-ELEN-2 {
        margin-top: 16px;
        margin-bottom: 7px;
        height: 170px;
        border-radius: 6px;
    }

    .thank-ELEN .btn {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/*---------------------*/
/* BLOG 3 */
/*---------------------*/
.title-blog-3 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 600;
    position: relative;
    text-align: center;
    color: #082a44;
    margin-bottom: 20px;
}

.italic-blog3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.italic-p-blog3 {
    font-style: italic;
}

.intro-qnhu, .interview-qnhu, .ending-blog3 {
    margin: 20px 100px 20px 100px;
    text-align: center;
    color: #082a44;
}

.intro-qnhu-title, .interview-title, .ending-blog3-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    font-style: italic;
    position: relative;
    display: inline-block;
    display: table;
    margin: 0 auto;
    margin-bottom: 20px;
}

.intro-qnhu-title::after, .interview-title::after, .ending-blog3-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #082a44;
    transition: width 0.3s ease-in-out;
}

.intro-qnhu-title:hover::after, .interview-title:hover::after, .ending-blog3-title:hover::after {
    width: 100%;
    color: #082a44;
}

.info-qnhu {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 40px;
}

.anh-qnhu {
    height: 800px;
    width: auto;
    border-radius: 15px;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.intro-qnhu-list {
    font-size: 30px;
    margin-left: 100px;
    text-align: justify;
}

.detailed-info-qnhu {
    margin-left: 50px;
}

.bold-p {
    font-weight: 600;
}

.anh-qnhu:hover {
    transform: scale(1.01);
}

.chat-container {
    width: 100%;
    font-family: inherit;
}

.message {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 25px;
}

.message.left { 
    justify-items: flex-start; 
}
.message.right {
    justify-content: flex-end;
    margin-left: 300px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.bubble {
    padding: 25px 25px;
    width: fit-content;
    font-size: 24px;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #082a44; /* Màu chữ đen/xanh đen cho dễ đọc trên nền sáng/mờ */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Viền mờ tạo cảm giác mặt kính */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.message.left .bubble {
    border-radius: 20px 20px 20px 0;
    margin-left: 15px;
    text-align: justify;
}

.message.right .bubble {
    border-radius: 20px 20px 0 20px;
    margin-right: 15px;
    text-align: justify;
}

.highlight {
    font-weight: bold;
    color: #082a44; 
}

.ending-blog3 p {
    font-size: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #082a44;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: justify;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .title-blog-3 {
        font-size: 56px;
        margin-bottom: 14px;
    }

    .intro-qnhu, .interview-qnhu, .ending-blog3 {
        margin: 14px 70px 14px 70px;
    }

    .intro-qnhu-title, .interview-title, .ending-blog3-title {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .intro-qnhu-title::after, .interview-title::after, .ending-blog3-title::after {
        height: 2px;
    }

    .info-qnhu {
        margin-top: 28px;
    }

    .anh-qnhu {
        height: 560px;
        border-radius: 11px;
    }

    .intro-qnhu-list {
        font-size: 21px;
        margin-left: 70px;
    }

    .detailed-info-qnhu {
        margin-left: 35px;
    }

    .message {
        margin-bottom: 18px;
    }

    .message.left {
        margin-right: 210px;
    }

    .message.right {
        margin-left: 210px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .bubble {
        padding: 18px 18px;
        font-size: 17px;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    }

    .message.left .bubble {
        border-radius: 14px 14px 14px 0;
        margin-left: 11px;
    }

    .message.right .bubble {
        border-radius: 14px 14px 0 14px;
        margin-right: 11px;
    }

    .ending-blog3 p {
        font-size: 21px;
        border-radius: 11px;
        padding: 14px 21px;
        margin-bottom: 14px;
    }
}

@media (max-width: 768px) {
    .title-blog-3 {
        font-size: 42px;
        margin-bottom: 11px;
    }

    .intro-qnhu, .interview-qnhu, .ending-blog3 {
        margin: 11px 56px 11px 56px;
    }

    .intro-qnhu-title, .interview-title, .ending-blog3-title {
        font-size: 29px;
        margin-bottom: 11px;
    }

    .intro-qnhu-title::after, .interview-title::after, .ending-blog3-title::after {
        height: 2px;
    }

    .info-qnhu {
        margin-top: 21px;
    }

    .anh-qnhu {
        height: 420px;
        border-radius: 8px;
    }

    .intro-qnhu-list {
        font-size: 16px;
        margin-left: 54px;
    }

    .detailed-info-qnhu {
        margin-left: 27px;
    }

    .message {
        margin-bottom: 14px;
    }

    .message.left {
        margin-right: 160px;
    }

    .message.right {
        margin-left: 160px;
    }

    .avatar {
        width: 24px;
        height: 24px;
        box-shadow: 0 2px 3px rgba(0,0,0,0.3);
    }

    .bubble {
        padding: 14px 14px;
        font-size: 13px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .message.left .bubble {
        border-radius: 11px 11px 11px 0;
        margin-left: 8px;
    }

    .message.right .bubble {
        border-radius: 11px 11px 0 11px;
        margin-right: 8px;
    }

    .ending-blog3 p {
        font-size: 16px;
        border-radius: 8px;
        padding: 11px 16px;
        margin-bottom: 11px;
    }   
}

@media (max-width: 480px) {
    .title-blog-3 {
        font-size: 27px;
        margin-bottom: 7px;
    }

    .intro-qnhu, .interview-qnhu, .ending-blog3 {
        margin: 7px 32px 7px 32px;
    }

    .intro-qnhu-title, .interview-title, .ending-blog3-title {
        font-size: 20px;
        margin-bottom: 13px;
    }

    .intro-qnhu-title::after, .interview-title::after, .ending-blog3-title::after {
        height: 1px;
    }

    .info-qnhu {
        margin-top: 13px;
        flex-direction: column;
    }

    .anh-qnhu {
        height: 200px;
        border-radius: 8px;
    }

    .intro-qnhu-list {
        font-size: 14px;
        margin-left: 32px;
        margin-top: 13px;
    }

    .detailed-info-qnhu {
        margin-left: 16px;
    }

    .message {
        margin-bottom: 11px;
    }

    .message.left {
        margin-right: 50px;
    }

    .message.right {
        margin-left: 50px;
    }

    .avatar {
        width: 20px;
        height: 20px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    .bubble {
        padding: 11px 11px;
        font-size: 14px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .message.left .bubble {
        border-radius: 7px 7px 7px 0;
        margin-left: 5px;
    }

    .message.right .bubble {
        border-radius: 7px 7px 0 7px;
        margin-right: 5px;
    }

    .ending-blog3 p {
        font-size: 15px;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 7px 11px;
        margin-bottom: 7px;
    }
}

/*---------------------*/
/* SIGN IN - SIGN UP */
/*---------------------*/
.login-box {
    margin: auto;
    width: 420px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #082a44;
    border-radius: 15px;
    padding: 20px 30px;
}

.login-box h1 {
    font-size: 30px;
    text-align: center;
}

.login-box .input-box {
    width: 100%;
    height: 50px;
    position: relative;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #082a44;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(-50%);
    font-size: 20px;
}

.login-box .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    margin-right: 8px;
}

.remember-forgot a {
    color: #082a44;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.login-box .agreement {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    margin: -15px 0 15px;
    text-align: left;
    cursor: pointer;
}

.agreement input {
    margin-right: 8px;
    margin-top: 3px;
}

.agreement .highlight {
    font-weight: 700;
}

.agreement a {
    text-decoration: none;
    color: #082a44;
    font-weight: 600;
}

.agreement a:hover {
    text-decoration: underline;
}

.login-box .btn {
    width: 100%;
    height: 45px;
    background: #082a44;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.login-box .register-link {
    text-align: center;
    font-size: 14px;
    margin: 20px 0 15px;
}

.login-box .register-link p a {
    color: #082a44;
    text-decoration: none;
    font-weight: 600;
}

.login-box .register-link p a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-box {
        margin: auto;
        width: 210px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px 20px;
    }

    .login-box h1 {
        font-size: 18px;
        text-align: center;
    }

    .login-box .input-box {
        width: 100%;
        height: 15px;
        position: relative;
        margin: 30px 0px;
    }

    .input-box input {
        width: 100%;
        height: 100%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 40px;
        font-size: 9px;
        color: #fff;
        padding: 15px 30px 15px 15px;
    }

    .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%);
        font-size: 20px;
    }

    .login-box .remember-forgot {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        font-size: 8px;
        margin: 5px 0 10px;
    }

    .remember-forgot label input {
        margin: -5px 4px -5px auto;
        text-align: left;
    }

    .login-box .agreement {
        font-size: 8px;
        margin: 5px 0 10px;
        text-align: left;
    }

    .agreement input {
        margin-right: 4px;
        margin-top: 0px;
    }

    .agreement .highlight {
        font-weight: 700;
    }

    .agreement a {
        text-decoration: none;
        color: #082a44;
        font-weight: 600;
    }

    .agreement a:hover {
        text-decoration: underline;
    }

    .login-box .btn {
        width: 100%;
        height: 25px;
        font-size: 8px;
    }

    .login-box .register-link {
        text-align: center;
        font-size: 8px;
        margin: 10px 0 5px;
    }
}

/* EFFECT FOR RESULTS PAGE */
.container {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}