body {
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-areas:
    "header header"
    "content content"
    "footer footer";
    grid-template-columns: 5fr;
    background-color: white;

}

.container div.header {
    grid-area: header;
    overflow: hidden;
    zoom: 100%;
    background: linear-gradient(135deg, #255925, #357a35, #4a9e4a);
    display: flex;
    align-items: center;
    height: 50px; /* Definierte Höhe für Kompaktheit */
    padding: 0 20px;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.container .header-title{
    grid-area: header;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.container .header .topbar {
    grid-area: header;
    display: flex;
    gap: 8px;
    margin-left: auto; /* Schiebt die Links ganz nach rechts */
}

.container .header .topbar a {
    grid-area: header;
    color: #f2f2f2;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;

}
/* change color when hovering*/
.container .header .topbar a:hover {
    grid-area: header;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}


.content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    color: #1A3A12;
    margin-bottom: 6px;
}
.page-sub {
    font-size: 13px;
    color: #4E7A42;
    margin-bottom: 40px;
}

/* Section */
.section {
    margin-bottom:
            36px;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #C8DFB8;
}
.section-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #2D6A1F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A3A12;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #F4FAF1;
    border: 1px solid #C8DFB8;
    border-left: 3px solid #2D6A1F;
    border-radius: 10px;
    padding: 12px 14px;
}
.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2D6A1F;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.step-body {}
.step-title {
    font-size: 12px;
    font-weight: 600;
    color: #1A3A12;
    margin-bottom: 3px;
}
.step-desc {
    font-size: 11.5px;
    color: #4E7A42;
    line-height: 1.5; }





/*/////// footer ///////*/
.container div.footer {
    grid-area: footer;
    border-style: none;
    height: 100px;
    background: linear-gradient(to bottom, #947352, #704F38);

    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

}

.container .footer .footer-left {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-left: auto;
}
.container .footer .footer-left span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.container .footer .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}
.container .footer .footer-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.15s;
}
.container .footer .footer-right a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.container .footer .dot {
    color: rgba(255,255,255,0.2);
    font-size: 14px;
}
.container .footer .li-icon {
    width: 14px; height: 14px;
    background: #0A66C2;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: white;
    flex-shrink: 0;
}
