*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* PAGE BACKGROUND */

.page-bg{
min-height:100vh;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* NAVBAR */

.navbar{
background:#0b2c5f;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;
}

.logo{
color:white;
font-size:24px;
font-weight:bold;
}

.navbar nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

.navbar nav a:hover{
color:#f5b400;
}

/* CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:40px;
}

/* HERO SECTION */

.hero{
display:flex;
justify-content:center;
align-items:center;
height:80vh;
}

.hero-box{
background:rgba(0,0,0,0.65);
padding:50px;
border-radius:10px;
text-align:center;
color:white;
width:500px;
}

.hero-box h1{
font-size:38px;
margin-bottom:15px;
}

.hero-box p{
margin-bottom:25px;
}

/* TRACK FORM */

.track-form{
display:flex;
}

.track-form input{
flex:1;
padding:14px;
border:none;
outline:none;
}

.track-form button{
padding:14px 25px;
border:none;
background:#f5b400;
font-weight:bold;
cursor:pointer;
}

/* CONTENT BOX */

.content-box{
background:white;
padding:50px;
border-radius:10px;
line-height:1.7;
}

/* CONTACT FORM */

.contact-wrapper{
display:flex;
justify-content:center;
align-items:center;
min-height:70vh;
}

.contact-box{
background:white;
width:480px;
padding:40px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.contact-box h2{
text-align:center;
margin-bottom:20px;
color:#0b2c5f;
}

.contact-box input,
.contact-box textarea{
width:100%;
padding:14px;
margin-bottom:18px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.contact-box textarea{
height:130px;
resize:none;
}

.contact-box button{
width:100%;
padding:14px;
background:#0b2c5f;
color:white;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

.contact-box button:hover{
background:#f5b400;
color:black;
}

/* FOOTER */

.footer{
background:#0b2c5f;
color:white;
padding:40px 20px;
margin-top:50px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.footer h3{
margin-bottom:15px;
}

.footer a{
color:white;
text-decoration:none;
display:block;
margin-bottom:8px;
}

.footer-bottom{
text-align:center;
margin-top:20px;
font-size:14px;
}