*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

header{
background:#000000;
padding:15px 30px;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
}

.logo img{
height:55px;
width:auto;
}

nav ul{
display:flex;
gap:20px;
list-style:none;
}

nav a{
color:#ffffff;
text-decoration:none;
font-weight:500;
}

nav a:hover{
color:#d71920;
}

.main-container{
display:flex;
justify-content:center;
align-items:center;
gap:50px;
padding:40px 20px;
background:#f5f7fa;
min-height:70vh;
}

.form-box{
background:#ffffff;
width:360px;
padding:35px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.1);
border-top:6px solid #d71920;
}

.top-icon img{
width:80px;
height:auto;
display:block;
margin:auto;
margin-bottom:15px;
}

.form-box h2{
margin-bottom:10px;
color:#d71920;
}

.form-box p{
color:#666;
margin-bottom:20px;
}

.input-group{
position:relative;
margin-bottom:15px;
}

.input-group i{
position:absolute;
left:12px;
top:13px;
color:#999;
}

.input-group input{
width:100%;
padding:12px 12px 12px 38px;
border:1px solid #ccc;
border-radius:6px;
}

.input-group input:focus{
outline:none;
border-color:#d71920;
}

.btn{
width:100%;
padding:14px;
background:#d71920;
color:#fff;
border:none;
border-radius:6px;
cursor:pointer;
font-size:16px;
font-weight:600;
}

.btn:hover{
background:#b31218;
}

.right-sidebar img{
width:550px;
max-width:100%;
}

#message{
margin-top:15px;
text-align:left;
line-height:1.6;
font-size:14px;
}

.error-title{
font-weight:bold;
color:#d93025;
}

.section{
padding:60px 20px;
}

.container{
max-width:1100px;
margin:auto;
}

.box-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.feature-box{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
border-left:5px solid #d71920;
}

.feature-box:hover{
transform:translateY(-4px);
transition:.3s;
}

.icon{
font-size:28px;
color:#d71920;
margin-bottom:10px;
}

.feature-heading{
text-align:center;
font-size:38px;
margin-bottom:40px;
color:#222;
}

.ufile-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.ufile-box{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.ufile-box:hover{
transform:translateY(-4px);
transition:.3s;
}

.ufile-box i{
font-size:40px;
color:#d71920;
margin-bottom:15px;
}

.ufile-box h3{
margin-bottom:10px;
color:#222;
}

.ufile-box p{
color:#666;
line-height:1.7;
}

footer{
background:#000000;
padding:25px;
}

footer ul{
display:flex;
justify-content:center;
gap:25px;
list-style:none;
}

footer a{
color:#ffffff;
text-decoration:none;
}

footer a:hover{
color:#d71920;
}

@media(max-width:768px){

.main-container{
flex-direction:column;
}

.box-grid{
grid-template-columns:1fr;
}

.ufile-grid{
grid-template-columns:1fr;
}

.right-sidebar img{
width:260px;
}

nav ul{
display:none;
}

.feature-heading{
font-size:30px;
}
}