*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#F8FAFF;
color:#1F2937;
}

.header{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 40px;
max-width:1400px;
margin:auto;
}
background:#ffffff;
border-bottom:1px solid #e5e7eb;
}

.logo{
font-size:42px;
font-weight:800;
color:#2948D3;
line-height:1;
}
font-weight:700;
color:#2948D3;
}

.logo span{
display:block;
font-size:14px;
margin-top:6px;
color:#D6B36A;
font-weight:600;
letter-spacing:1px;
}
font-weight:400;
color:#6b7280;
margin-top:4px;
}

nav a{
text-decoration:none;
color:#1F2937;
display:flex;
gap:28px;
margin-left:0;
font-size:16px;
font-weight:600;
}

.hero{
padding:70px 20px;
text-align:center;
background:linear-gradient(
135deg,
#F8FAFF,
#D9E4FF
);
}

.hero h1{
font-size:58px;
line-height:1.4;
font-weight:700;
max-width:1000px;
margin:auto;
}

.hero p{
margin-top:20px;
font-size:20px;
color:#4b5563;
}

.btn{
display:inline-block;
margin-top:40px;
padding:16px 36px;
background:#2948D3;
color:white;
text-decoration:none;
border-radius:12px;
font-weight:600;
}

.btn:hover{
opacity:.9;
}

.section{
max-width:1400px;
margin:auto;
padding:70px 40px;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:60px;
}

.cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
max-width:1200px;
margin:auto; 
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:
0 8px 20px rgba(0,0,0,.05);
}

.card h3{
margin-bottom:auto;
}

.footer{
padding:60px 20px;
background:#ffffff;
text-align:center;
border-top:1px solid #e5e7eb;
}

.hero{
position:relative;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:#D6B36A;
opacity:.08;
border-radius:50%;
top:-200px;
right:-100px;
}

.hero::after{
content:"";
position:absolute;
width:400px;
height:400px;
background:#2948D3;
opacity:.06;
border-radius:50%;
bottom:-200px;
left:-100px;
}

.card{
transition:all .3s ease;
border:1px solid rgba(0,0,0,.05);
}

.card:hover{
transform:translateY(-8px);
box-shadow:
0 20px 40px rgba(0,0,0,.08);
}

.section-title{
font-weight:700;
color:#2948D3;
}

.footer h3{
font-size:28px;
margin-bottom:10px;
color:#2948D3;
}
.cards{
margin-top:40px;
}

.card{
background:#fff;
padding:35px;
border-radius:24px;
}

.card h3{
font-size:22px;
margin-bottom:16px;
color:#2948D3;
}

.card p{
line-height:1.8;
color:#6B7280;
}
.hero-stats{
margin-top:60px;
display:flex;
justify-content:center;
gap:80px;
flex-wrap:wrap;
}

.hero-stats strong{
display:block;
font-size:36px;
color:#2948D3;
}

.hero-stats span{
color:#6B7280;
}
input,
textarea{
width:100%;
padding:14px;
border:1px solid #d1d5db;
border-radius:10px;
margin-top:8px;
font-size:15px;
}

label{
font-weight:600;
color:#1F2937;
}

button{
border:none;
cursor:pointer;
}
