*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f5f5;
color:#0a0f2c;
}

header{
background:#020b3f;
padding:25px 70px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:32px;
font-weight:bold;
color:white;
}

.logo span{
color:#d4a017;
}

nav a{
color:white;
text-decoration:none;
margin-left:35px;
font-size:18px;
font-weight:bold;
}

.hero{
background:#020b3f;
color:white;
padding:100px 70px;
display:flex;
justify-content:space-between;
align-items:center;
gap:60px;
}

.hero-text{
max-width:700px;
}

.hero-text h1{
font-size:78px;
line-height:1.1;
margin-bottom:30px;
}

.hero-text h1 span{
color:#d4a017;
}

.hero-text p{
font-size:24px;
line-height:1.7;
color:#d9d9d9;
margin-bottom:40px;
}

.btn{
display:inline-block;
background:#d4a017;
color:black;
padding:18px 35px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
font-size:18px;
margin-right:20px;
}

.btn-outline{
background:transparent;
border:2px solid #d4a017;
color:#d4a017;
}

.hero img{
width:650px;
border-radius:20px;
}

.section{
padding:80px 70px;
}

.section-title{
font-size:60px;
margin-bottom:20px;
}

.section-text{
font-size:24px;
color:#555;
line-height:1.7;
margin-bottom:60px;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.card img{
width:100%;
height:300px;
object-fit:cover;
}

.card-content{
padding:30px;
}

.card h3{
font-size:38px;
margin-bottom:20px;
}

.price{
font-size:30px;
font-weight:bold;
margin-bottom:25px;
}

.card p{
font-size:20px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}

button{
background:#d4a017;
border:none;
padding:16px 30px;
border-radius:10px;
font-size:18px;
font-weight:bold;
cursor:pointer;
}

footer{
background:#020b3f;
color:white;
text-align:center;
padding:35px;
font-size:18px;
margin-top:80px;
}

@media(max-width:1000px){

header{
padding:25px;
flex-direction:column;
gap:20px;
}

.hero{
flex-direction:column;
padding:70px 25px;
}

.hero img{
width:100%;
}

.hero-text h1{
font-size:52px;
}

.section{
padding:60px 25px;
}

.grid{
grid-template-columns:1fr;
}

.section-title{
font-size:42px;
}

}
