*{
margin:0;
padding:0;
box-sizing:border-box;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#f4f6f9;
padding:20px 60px;
z-index:1000;
}

body{
font-family:'Inter', sans-serif;
color:#000000;
line-height:1.6;
background:#ffffff;
}
/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 120px;/* equal space left & right */
background: white;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:800;
margin-left:40px;   /* shifts logo right */
}

.logo a{
text-decoration:none !important;
color:#000;
font-weight:800;
}

.logo img{
width:30px;
}

.download-btn{
background:#000;
color:white;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
transition:0.3s;
}

.download-btn:hover{
background:#333;
}

/* HERO */

.hero{
padding:120px 20px 80px;
}

.hero-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
}

@media (max-width:768px){

.hero-container{
flex-direction:column;
text-align:center;
}

}

.hero-text{
max-width:520px;
}

.intro{
font-style:italic;
color:#6b7280;
margin-bottom:10px;
}

.hero h1{
font-size:56px;
line-height:1.2;
margin-bottom:20px;
}

.hero span{
color:#2563eb;
}

.hero-desc{
color:#6b7280;
margin-bottom:30px;
}

.btn-primary{
background:#000;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn-primary:hover{
background:#333;
}

.hero-image img{
width:360px;
max-width:100%;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,0.2);
}


/* FEATURES SECTION */

.features{
padding:100px 8%;
background:#ffffff;
text-align:center;
}

.features-header h2{
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.features-header p{
color:#6b7280;
margin-bottom:60px;
font-size:18px;
}

/* 3 COLUMN GRID */

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.feature img{
width:100%;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.feature h3{
margin-top:25px;
font-size:20px;
font-weight:600;
}

.feature p{
margin-top:10px;
color:#6b7280;
font-size:15px;
line-height:1.6;
}

.footer{
background:#f4f5f7;
padding:70px 0 20px 0;
color:#6b7280;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 2fr;
gap:60px;
padding:0 20px;
}

.footer-logo{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
font-size:18px;
margin-bottom:15px;
}

.footer-logo img{
width:35px;
}

.footer-about p{
font-size:14px;
line-height:1.6;
}

.iso{
display:flex;
align-items:center;
gap:10px;
margin-top:20px;
}

.iso img{
width:45px;
}

.footer-links h4{
margin-bottom:15px;
font-size:16px;
color:#374151;
}

.footer-links a{
display:block;
text-decoration:none;
color:#6b7280;
margin-bottom:10px;
font-size:14px;
}

.footer-links a:hover{
color:#2563eb;
}

.footer-contact h4{
margin-bottom:15px;
color:#374151;
}

.footer-contact p{
font-size:14px;
margin-bottom:12px;
line-height:1.5;
}

.footer-bottom{
max-width:1200px;
margin:50px auto 0 auto;
border-top:1px solid #d1d5db;
padding-top:20px;
display:flex;
justify-content:space-between;
font-size:14px;
color:#6b7280;
padding-left:20px;
padding-right:20px;
}

.delete-container{
max-width:900px;
margin:120px auto;
padding:20px;
font-family:Arial, sans-serif;
line-height:1.8;
}

.delete-container h1{
font-size:40px;
margin-bottom:20px;
}

.delete-container p{
font-size:18px;
color:#5f6f81;
margin-bottom:20px;
}

.warning-box{
margin-top:30px;
padding:18px 20px;
border-radius:12px;
background:#fdecec;
border:1px solid #f5c2c2;
color:#e53935;
font-weight:500;
}

/* Terms */

.legal-container{
max-width:900px;
margin:120px auto;
padding:20px;
line-height:1.7;
font-family:Arial, sans-serif;
}

.legal-container h1{
font-size:36px;
margin-bottom:20px;
}

.legal-container h2{
margin-top:35px;
font-size:22px;
}

.legal-container p{
color:#444;
margin-top:10px;
}

.legal-container ul{
margin-top:10px;
padding-left:20px;
}

