:root{

    --nupiggielerBlue:#69B8FF;
    --nupiggielerBlueDark:#3C96E6;
    --nupiggielerBlueLight:#DDF2FF;

    --nupiggielerWhite:#FFFFFF;
    --nupiggielerPink:#F7A6C9;
    --nupiggielerBlueVariant:#72A9FF;
    --nupiggielerBlack:#2F2F2F;
    --nupiggielerYellow:#FFD84D;
    --nupiggielerGreen:#74D94B;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    background:var(--nupiggielerBlue);
    font-family:Verdana,Arial,sans-serif;
    color:#222;

}

header{

    background:var(--nupiggielerBlueDark);
    color:white;
    border-bottom:4px solid white;

}

.header-content{

    width:1000px;
    max-width:95%;
    margin:auto;

    display:flex;
    align-items:center;
    gap:20px;

    padding:20px 0;

}

.logo{

    width:90px;

}

.tagline{

    margin-top:5px;
    opacity:.9;

}

nav{

    background:#58AFFF;
    text-align:center;
    border-bottom:2px solid white;

}

nav a{

    display:inline-block;
    padding:15px 18px;

    color:white;
    text-decoration:none;
    font-weight:bold;

}

nav a:hover{

    background:#7BC2FF;

}

main{

    width:1000px;
    max-width:95%;

    margin:30px auto;

}

section{

    background:white;

    border:2px solid #58AFFF;

    border-radius:10px;

    margin-bottom:25px;

    padding:25px;

}

section h2{

    color:#3C96E6;
    margin-bottom:15px;

}

.hero{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;

}

.hero div{

    flex:1;

}

.hero-image{

    width:260px;

}

.hero p{

    line-height:1.8;
    margin-bottom:20px;

}

button{

    background:#58AFFF;

    color:white;

    border:none;

    padding:12px 24px;

    border-radius:8px;

    font-size:15px;

    cursor:pointer;

}

button:hover{

    background:#3C96E6;

}

#brrText{

    margin-top:15px;

    color:#3C96E6;

    font-weight:bold;

}

.variants{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));

    gap:20px;

}

.variant{

    text-align:center;

    border:1px solid #ddd;

    border-radius:8px;

    padding:15px;

    transition:.2s;

}

.variant:hover{

    transform:translateY(-4px);

    border-color:#58AFFF;

}

.variant img{

    width:80px;

    margin-bottom:10px;

}

.variant h3{

    margin-bottom:5px;

}

table{

    width:100%;

    border-collapse:collapse;

}

table th{

    width:220px;

    background:#58AFFF;

    color:white;

}

table th,
table td{

    border:1px solid #ccc;

    padding:12px;

    text-align:left;

}

ul{

    padding-left:25px;

}

ul li{

    margin-bottom:10px;

}

footer{

    background:#3C96E6;

    color:white;

    text-align:center;

    padding:20px;

    border-top:4px solid white;

}

@media(max-width:800px){

.hero{

    flex-direction:column;

}

.hero-image{

    width:200px;

}

.header-content{

    flex-direction:column;
    text-align:center;

}

nav a{

    display:block;

    border-top:1px solid rgba(255,255,255,.2);

}

}