html, body{
height:100%;
}

body{
  background: linear-gradient(135deg, #f0f0f0, #e6e6e6);
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;

display:flex;
flex-direction:column;
min-height:100vh;
}

footer{
margin-top:auto;
}
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
line-height:1.6;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:sticky;
top:0;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
margin:0;
padding:0;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#ff6a00;
}

section{
padding:80px 0;
}

.hero{
background:url('https://images.unsplash.com/photo-1568605114967-8130f3a36994') center/cover no-repeat;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
}

.hero::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
}

.hero h1{
font-size:3rem;
}

.btn{
padding:12px 22px;
background:#ff6a00;
color:#fff;
border:none;
border-radius:4px;
text-decoration:none;
display:inline-block;
}

.btn:hover{
background:#e55a00;
}

.light{
background:#f9f9f9;
}

.grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
}

.card{
background:#fff;
border-radius:8px;
box-shadow:0 2px 12px rgba(0,0,0,0.08);
overflow:hidden;
width:320px;
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-content{
padding:20px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:auto;
}

input, textarea{
padding:12px;
border:1px solid #ccc;
border-radius:4px;
font-size:1rem;
}

footer{
background:#222;
color:#fff;
text-align:center;
padding:30px;
}

@media(max-width:768px){
nav ul{
flex-direction:column;
}
.hero h1{
font-size:2.2rem;
}
.grid{
flex-direction:column;
align-items:center;
}
}
footer{
background:#222;
color:#fff;
padding:50px 20px 20px 20px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
max-width:1200px;
margin:auto;
gap:40px;
}

.footer-column{
flex:1;
min-width:220px;
}

.footer-column h3{
margin-bottom:15px;
}

.footer-column ul{
list-style:none;
padding:0;
}

.footer-column ul li{
margin-bottom:8px;
}

.footer-column ul li a{
color:#fff;
text-decoration:none;
}

.footer-column ul li a:hover{
color:#ff6a00;
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.2);
margin-top:30px;
padding-top:15px;
font-size:0.9rem;
}

@media(max-width:768px){

.footer-container{
flex-direction:column;
text-align:center;
}

}
.trust-section{
background:#f9f9f9;
padding:70px 20px;
text-align:center;
}

.trust-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:30px;
}

.trust-card{
background:#fff;
padding:25px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
width:220px;
}

.reviews{
padding:70px 20px;
text-align:center;
}

.review-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.review-card{
background:#fff;
padding:25px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
width:300px;
}
.site-footer{
background:#1f1f1f;
color:#ddd;
padding:60px 0 25px 0;
font-size:15px;
}

.footer-grid{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
gap:50px;
align-items:start;
}

.footer-col h3{
color:#fff;
margin-bottom:18px;
font-size:18px;
}

.footer-col p{
margin:8px 0;
line-height:1.6;
}

.footer-contact p{
margin:6px 0;
}

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a{
color:#ddd;
text-decoration:none;
transition:0.3s;
}

.footer-col a:hover{
color:#ff6a00;
}

.footer-divider{
height:1px;
background:rgba(255,255,255,0.15);
margin:40px 0 20px 0;
}

.footer-bottom{
text-align:center;
font-size:14px;
}

.footer-bottom a{
color:#ddd;
margin:0 8px;
}

.footer-bottom a:hover{
color:#ff6a00;
}
.compliance-badges{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
margin-top:20px;
}

.compliance-badges img{
height:55px;
width:auto;
opacity:0.9;
transition:0.3s;
}

.compliance-badges img:hover{
opacity:1;
transform:scale(1.05);
}