/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
.sav-hero{
text-align:center;
padding:80px 20px;
background:#f5f5f5;
}

.sav-hero h1{
font-size:42px;
margin-bottom:15px;
}

.sav-hero p{
font-size:18px;
color:#666;
max-width:700px;
margin:auto;
}

.sav-services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.sav-card{
background:#fff;
padding:35px;
border-radius:10px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.3s;
}

.sav-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.sav-icon{
font-size:40px;
margin-bottom:15px;
}

.sav-process{
background:#fafafa;
padding:80px 20px;
text-align:center;
}

.sav-process h2{
margin-bottom:40px;
}

.sav-steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.sav-step span{
display:inline-flex;
align-items:center;
justify-content:center;
width:50px;
height:50px;
border-radius:50%;
background:#000;
color:#fff;
margin-bottom:15px;
font-weight:bold;
}

.sav-faq{
padding:80px 20px;
max-width:900px;
margin:auto;
}

.faq-item{
border-bottom:1px solid #eee;
padding:20px 0;
}

.sav-contact{
text-align:center;
padding:80px 20px;
}

.sav-button{
display:inline-block;
padding:15px 35px;
background:#000;
color:#fff;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.sav-button:hover{
background:#333;
}