:root{

--f3d-red:#E53935;
--f3d-yellow:#FDD835;
--f3d-dark:#3B3A38;
--f3d-light:#D0D0CF;

}

*{
box-sizing:border-box;
}

body{

margin:0;
font-family: Inter, Arial, Helvetica, sans-serif;
background:#ffffff;
color:var(--f3d-dark);

}

header{

display:flex;
align-items:center;
justify-content:space-between;
padding:20px 40px;
border-bottom:3px solid var(--f3d-red);
background:white;

}

.logo{
display:flex;
align-items:center;
gap:16px;
}

.logo img{
height:130px;
}

.title{
font-size:28px;
font-weight:700;
}

.subtitle{
font-size:14px;
color:#777;
}

.container{
max-width:1100px;
margin:auto;
padding:40px;
}

.section{
margin-bottom:50px;
}

.section h2{

border-left:6px solid var(--f3d-red);
padding-left:12px;
font-size:24px;
margin-bottom:20px;

}

.doc{

padding:16px;
border:1px solid var(--f3d-light);
border-radius:8px;
margin-bottom:12px;

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

}

.doc a{

text-decoration:none;
color:var(--f3d-dark);
font-weight:600;

}

.button{

padding:8px 14px;
background:var(--f3d-red);
color:white;
border-radius:6px;
text-decoration:none;

}

footer{

margin-top:80px;
padding:20px;
text-align:center;
font-size:12px;
color:#777;
border-top:1px solid var(--f3d-light);

}

/* LOGIN */

.login{

max-width:420px;
margin:140px auto;
text-align:center;

}

.login img{
height:80px;
margin-bottom:20px;
}

input{

padding:12px;
width:100%;
margin-top:10px;
border:1px solid var(--f3d-light);
border-radius:6px;

}

button{

margin-top:14px;
padding:12px;
width:100%;
background:var(--f3d-red);
color:white;
border:none;
border-radius:6px;
font-size:16px;

}

.request{

margin-top:20px;
font-size:14px;

}

/* HERO TITELBEREICH */

.hero{

padding:20px 30px;
background:linear-gradient(90deg,#ffffff,#f7f7f7);
border-bottom:3px solid var(--f3d-red);

}

.hero-inner{

max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:25px;

}

.hero-logo img{

height:95px;

}

.hero-text h1{

font-size:34px;
margin:0;
font-weight:700;

}

.hero-text p{

font-size:16px;
margin-top:6px;
color:#666;

}

.hero-actions{

margin-left:auto;

}