@charset "UTF-8";
/* CSS Document */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:"Plus Jakarta Sans",sans-serif;

background:#e8f0ef;

color:#1f2937;

overflow-x:hidden;

}

.hero{

min-height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:70px 30px;

text-align:center;

}

.hero-text{

max-width:900px;

}

.tag{

display:inline-block;

padding:10px 18px;

border-radius:50px;

background:white;

font-size:13px;

font-weight:700;

letter-spacing:2px;

color:#2563EB;

margin-bottom:35px;

box-shadow:0 15px 30px rgba(0,0,0,.05);

}

h1{

font-size:72px;

font-weight:800;

}

h2{

margin-top:20px;

font-size:48px;

line-height:1.15;

font-weight:700;

color:#374151;

}

.hero p{

font-size:22px;

line-height:1.7;

max-width:900px;

margin:auto;

margin-top:35px;

color:#4b5563;

}

.message{

font-size:28px;

font-weight:600;

margin-top:20px;

}

.button{

display:inline-flex;

margin-top:45px;

padding:18px 42px;

border-radius:50px;

text-decoration:none;

background:linear-gradient(135deg,#2563EB,#7C3AED);

color:white;

font-weight:700;

font-size:20px;

transition:.3s;

box-shadow:0 25px 45px rgba(37,99,235,.20);

}

.button:hover{

transform:translateY(-4px);

box-shadow:0 35px 60px rgba(37,99,235,.30);

}

.hero-image{

margin-top:70px;

}

.hero-image img{

width:100%;

max-width:980px;

display:block;

}

@media(max-width:900px){

h1{

font-size:54px;

}

h2{

font-size:34px;

}

.hero p{

font-size:18px;

}

.message{

font-size:22px;

}

.button{

width:100%;

max-width:330px;

justify-content:center;

}

.hero-image img{

max-width:100%;

}

}