

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{

background:#0f172a;
color:white;

}

header{

background:linear-gradient(90deg,#14532d,#16a34a);

padding:35px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,.3);

}

header h1{

font-size:38px;

}

header p{

margin-top:10px;

font-size:18px;

}

.container{

max-width:1000px;

margin:40px auto;

padding:20px;

}

.title{

text-align:center;

font-size:32px;

margin-bottom:15px;

color:#22c55e;

}

.subtitle{

text-align:center;

margin-bottom:35px;

color:#d1d5db;

font-size:18px;

}

.faq{

background:#1e293b;

margin-bottom:18px;

border-radius:12px;

overflow:hidden;

box-shadow:0 8px 15px rgba(0,0,0,.25);

}

.question{

padding:18px;

cursor:pointer;

font-size:18px;

font-weight:bold;

background:#16a34a;

transition:.3s;

}

.question:hover{

background:#15803d;

}

.answer{

display:none;

padding:18px;

line-height:1.8;

background:#334155;

font-size:16px;

}

.benefits{

margin-top:50px;

background:#1e293b;

padding:30px;

border-radius:15px;

}

.benefits h2{

text-align:center;

margin-bottom:20px;

color:#22c55e;

}

.benefits ul{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:15px;

list-style:none;

}

.benefits li{

background:#334155;

padding:15px;

border-radius:10px;

font-size:16px;

}

footer{

margin-top:50px;

padding:20px;

background:#111827;

text-align:center;

color:#cbd5e1;

}

@media(max-width:768px){

header h1{

font-size:28px;

}

.title{

font-size:26px;

}

}

