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

body{
    line-height:1.6;
    line-height:1.6;
    background:white;
    color:#333;
}

header{
    background:#FF4500;
    color:white;
    padding:15px 50px;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    list-style:none;
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
}
.brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo{
    height:50px;
    width:auto;
}
.hero{
    height:90vh;
    background:url('BG_Homepage.jpg') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:1;
    max-width:700px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.hero p{
    margin-bottom:20px;
    font-size:1.1rem;
}

.btn{
     background:#FF4500;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

section{
    padding:70px 10%;
}

h2{
    text-align:center;
    margin-bottom:30px;
}

.about,
.contact{
    text-align:center;
}

.cards{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    width:300px;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.card h3{
    margin-bottom:10px;
}

.why-us ul{
    max-width:500px;
    margin:auto;
}

.why-us li{
    margin:15px 0;
    list-style:none;
}

footer{
    background:#FF4500;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    .hero h1{
        font-size:2rem;
    }

    .cards{
        flex-direction:column;
        align-items:center;
    }
}