/* ===================================
   RESET & BODY CHUNG
=================================== */

	
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:roboto, Helvetica, sans-serif;
    font-size:15px;
    line-height:1.7;
    font-weight:400;
    color:#334155;
    background:#f8fafc;
    overflow-x:hidden;
}

/* ===================================
   CONTAINER
=================================== */

.container{
    width:100%;
    max-width:1430px;
    margin:auto;
    padding-left:15px;
    padding-right:15px;
}

/* ===================================
   LINK
=================================== */

a{
    color:#0f172a;
    text-decoration:none;
    transition:all .3s ease;
}

a:hover{
    color:#0097fc;
}

/* ===================================
   IMAGE
=================================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===================================
   HEADING
=================================== */

h1,h2,h3,h4,h5,h6{
    color:#0f172a;
    line-height:1.4;
    font-weight:800;
    margin-bottom:14px;
}

h1{
    font-size:34px;
    margin-bottom:20px;
    letter-spacing:-0.5px;
}

h2{
    font-size:28px;
    margin-top:35px;
}

h3{
    font-size:22px;
    margin-top:28px;
}

/* ===================================
   PARAGRAPH
=================================== */

p{
    margin-bottom:8px;
    color:#475569;
}

/* ===================================
   UL - OL
=================================== */

ul,
ol{
    padding-left:22px;
    margin-bottom:18px;
}

ul li,
ol li{
    margin-bottom:8px;
    color:#475569;
}

/* ===================================
   TABLE
=================================== */

table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:20px;
    background:#fff;
}

table tr td,
table tr th{
    border:1px solid #e2e8f0;
    padding:12px;
}

table th{
    background:#f1f5f9;
    font-weight:700;
}

/* ===================================
   INPUT
=================================== */

input,
textarea,
select{
    width:100%;
    border:1px solid #dbe4ee;
    border-radius:10px;
    padding:12px 14px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

input:focus,
textarea:focus,
select:focus{
    border-color:#0097fc;
    box-shadow:0 0 0 3px rgba(0,151,252,.08);
}

/* ===================================
   BUTTON
=================================== */

button,
.btn{
    display:inline-block;
    background:linear-gradient(135deg,#0097fc,#0077ff);
    color:#fff;
    border:none;
    border-radius:12px;
    padding:12px 22px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:all .3s ease;
}

button:hover,
.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,119,255,.18);
}

/* ===================================
   CARD CHUNG
=================================== */

.card{
    background:#fff;
    border-radius:18px;
    border:1px solid #edf2f7;
    overflow:hidden;
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(15,23,42,.06);
}

/* ===================================
   CONTENT SEO
=================================== */

.contentseo{
    background:#fff;
    padding:28px;
    border-radius:18px;
    border:1px solid #edf2f7;
}

.contentseo h2{
    border-left:5px solid #0097fc;
    padding-left:14px;
}

.contentseo h3{
    color:#1e293b;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    body{
        font-size:14px;
        line-height:1.6;
    }

    h1{
        font-size:28px;
    }

    h2{
        font-size:24px;
    }

    h3{
        font-size:20px;
    }

    .contentseo{
        padding:20px;
    }

}