body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f5f5f5;
    color:#333;
}

.site-header{
    background:#2ecc71;
    color:white;
    padding:15px 30px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.logo{
    width:240px;
    height:auto;
}

.site-header h1{
    margin:0;
}

.site-header nav{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.site-header nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

main{
    min-height:70vh;
}

.section{
    max-width:1200px;
    margin:auto;
    padding:90px 20px;
}

.cards{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.card{
    background:white;
    padding:25px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    width:300px;
    text-align:center;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}
.btn{
    display:inline-block;
    padding:12px 24px;
    background:#2ecc71;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
}

.footer-links{
    margin-top:15px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

.hero{
    text-align:center;
    padding:80px 20px;
    background:white;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    max-width:900px;
    margin:auto;
    font-size:20px;
    line-height:1.6;
}

.buttons{
    margin-top:30px;
}

.buttons .btn{
    margin:5px;
}

.highlight-section{
    background:#f8fff9;
    border-top:4px solid #2ecc71;
    border-bottom:4px solid #2ecc71;
}
/* ======================================================
   VitaFormA - Neuer Header
====================================================== */

.site-header{
    background:linear-gradient(135deg,#2ecc71,#27ae60);
    position:relative;
    overflow:hidden;
}

/* Hintergrund */
.site-header::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 20%,rgba(255,255,255,.15),transparent 40%),
        radial-gradient(circle at 85% 30%,rgba(255,255,255,.08),transparent 35%);
    pointer-events:none;
}

.header-top{
    position:relative;
    z-index:2;

    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:40px 30px;
}

.header-logo img{

    width:230px;
    height:auto;

    display:block;

}

.header-title{

    flex:1;
    padding:0 50px;
}

.header-title h1{

    margin:0;
    color:#fff;

    font-size:58px;
    font-weight:700;
}

.header-title p{

    margin-top:12px;

    color:#ecfff2;

    font-size:28px;

    font-weight:300;
}

.header-mascot img{

    width:190px;

    height:auto;

    display:block;

    filter:drop-shadow(0 8px 15px rgba(0,0,0,.2));

}

/* Navigation */

.main-nav{

    background:#fff;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:5px;

    padding:0;

    box-shadow:0 4px 18px rgba(0,0,0,.12);

    position:relative;
    z-index:5;
}

.main-nav a{

    color:#333;

    text-decoration:none;

    font-weight:600;

    padding:20px 22px;

    transition:.25s;

    border-bottom:4px solid transparent;
}

.main-nav a:hover{

    color:#2ecc71;

    border-color:#2ecc71;

    background:#f7fff9;

}

/* Responsive */

@media(max-width:900px){

.header-top{

    flex-direction:column;

    text-align:center;

    padding:30px 20px;

}

.header-logo img{

    width:170px;

}

.header-title{

    padding:20px 0;

}

.header-title h1{

    font-size:42px;

}

.header-title p{

    font-size:22px;

}

.header-mascot img{

    width:150px;

}

.main-nav{

    flex-direction:column;

}

.main-nav a{

    text-align:center;

}

}