*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#111;
}


/* HEADER */

.header{

    position:absolute;
    top:0;
    left:0;
    width:100%;

    padding:35px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:20;

}



.logo{

    color:#fff;
    font-size:38px;
    letter-spacing:4px;
    font-weight:600;

}



.logo span{

    display:block;
    color:#d6a632;
    font-size:11px;
    letter-spacing:6px;
    margin-top:5px;

}



nav{

    display:flex;
    gap:35px;

}



nav a{

    color:white;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1px;

}



nav a:hover{

    color:#d6a632;

}



.languages{

    color:#d6a632;
    font-size:13px;

}


.languages a{

    color:#d6a632;
    text-decoration:none;

}


/* HERO */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;


    background:

    linear-gradient(
    rgba(5,15,30,.78),
    rgba(5,15,30,.85)
    ),

    url('/assets/images/hero.jpg');


    background-size:cover;

    background-position:center;

}



.hero-content{

    margin-left:60px;

    max-width:900px;

}



.hero h1{

    color:white;

    font-family:Georgia,serif;

    font-size:76px;

    line-height:1.08;

    margin-bottom:35px;

}



.hero h1 span{

    color:#d6a632;

}



.hero p{

    color:white;

    max-width:650px;

    font-size:19px;

    line-height:1.7;

}



.buttons{

    display:flex;

    gap:25px;

    margin-top:40px;

}



.button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:280px;

    height:60px;

    background:#d6a632;

    color:white;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    letter-spacing:1.5px;

    border:1px solid #d6a632;

}



.button.outline{

    background:transparent;

    color:white;

}



.button:hover{

    background:transparent;

    color:#d6a632;

}





/* DARK SECTIONS */


.dark{

    background:#061526;

    color:white;

    padding:90px 60px;

}



.dark h2,
.about h2,
.contact h2{

    text-align:center;

    font-family:Georgia,serif;

    font-size:46px;

    margin-bottom:60px;

}




.cards{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.cards div{

    border:1px solid #9c7628;

    padding:40px;

    min-height:220px;

}



.cards h3{

    color:#d6a632;

    font-size:18px;

    margin-bottom:20px;

}



.cards p{

    color:#ddd;

    line-height:1.7;

}





/* ABOUT */


.about{

    padding:100px 20%;

}



.about p{

    text-align:center;

    font-size:20px;

    line-height:1.8;

    margin-bottom:25px;

}





/* PROCESS */


.steps{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}



.steps div{

    text-align:center;

    border-top:2px solid #d6a632;

    padding-top:25px;

}





/* CONTACT */


.contact{

    padding:100px 20%;

}



.contact p{

    text-align:center;

    margin-bottom:40px;

}



form{

    max-width:600px;

    margin:auto;

}



input,
textarea{

    width:100%;

    padding:18px;

    margin-bottom:15px;

    border:1px solid #ccc;

    font-size:16px;

}



textarea{

    height:150px;

}



button{

    width:100%;

    height:60px;

    background:#d6a632;

    border:none;

    color:white;

    font-weight:600;

    letter-spacing:2px;

}





/* FOOTER */


footer{

    background:#020b18;

    color:white;

    text-align:center;

    padding:50px;

}





/* TABLET */


@media(max-width:900px){


.header{

    padding:25px;

}



nav{

    display:none;

}



.hero-content{

    margin:30px;

}



.hero h1{

    font-size:45px;

}



.cards,
.steps{

    grid-template-columns:1fr;

}


}





/* MOBILE */


@media(max-width:768px){


.header{

    padding:25px 20px;

}



.logo{

    font-size:36px;

}



.logo span{

    font-size:10px;

    letter-spacing:5px;

}



.languages{

    position:absolute;

    top:30px;

    right:20px;

    font-size:12px;

}



.hero{

    min-height:100vh;

}



.hero-content{

    margin:0;

    padding:130px 25px 40px;

}



.hero h1{

    font-size:42px;

    line-height:1.08;

    margin-bottom:30px;

}



.hero p{

    font-size:18px;

    line-height:1.6;

}



.buttons{

    flex-direction:column;

    gap:20px;

    margin-top:35px;

}



.button{

    width:100%;

    min-width:0;

    height:55px;

    font-size:14px;

}



.dark{

    padding:70px 25px;

}



.dark h2,
.about h2,
.contact h2{

    font-size:34px;

}



.about{

    padding:70px 25px;

}



.contact{

    padding:70px 25px;

}


}