body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7fafc;
    color: #222;
}

.main-header {
    background: linear-gradient(90deg, #6dd5ed 0%, #2193b0 100%);
    color: #fff;
    padding-bottom: 2em;
}

/* Branding-Block für großes Logo und Schriftzug */
.branding {
    display: flex;
    align-items: center;
    padding: 2.5em 2em 1em 2em;
    gap: 2em;
}

.logo-img {
    height: 110px;
    width: auto;
    display: block;
}

.branding-title {
    font-weight: bold;
    font-size: 2.5em;
    line-height: 1.1;
    letter-spacing: 2px;
}

.branding-main {
    color: #222;
}

.branding-sub {
    color: #2193b0;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1em 2em;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar a:hover {
    color: #ffe082;
}

.header-content {
    text-align: center;
    margin-top: 2em;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 0.5em;
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.header-content p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.header-img {
    width: 100%;
    max-width: 500px;
    border-radius: 1em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding: 2em 5vw;
    flex-wrap: wrap;
}

.section-img {
    width: 100%;
    max-width: 350px;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.section-img.left {
    order: 0;
}

.section-img.right {
    order: 1;
}

.mission-section, .help-section {
    background: #fff;
    margin: 2em 0;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stories-section {
    background: #e3f2fd;
    padding: 2em 0;
    border-radius: 1em;
    margin: 2em 0;
}

.stories {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5em;
}

.story-card {
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1em;
    max-width: 250px;
    text-align: center;
}

.story-card img {
    width: 100%;
    border-radius: 0.7em;
    margin-bottom: 0.5em;
}

#donate-button-container {
    margin-top: 1.5em;
}

.animated-button {
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    color: #222;
    border: none;
    padding: 1em 2.5em;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 2em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 204, 51, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.animated-button::after {
    content: "";
    position: absolute;
    left: -75%;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    transition: left 0.5s;
}

.animated-button:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(255, 204, 51, 0.3);
}

.animated-button:hover::after {
    left: 120%;
}

footer {
    background: #2193b0;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
    border-radius: 1em 1em 0 0;
    margin-top: 2em;
}

@media (max-width: 900px) {
    .section-content {
        flex-direction: column;
        gap: 1em;
    }
    .stories {
        flex-direction: column;
        gap: 1em;
    }
    .branding {
        flex-direction: column;
        align-items: flex-start;
        padding: 2em 1em 1em 1em;
        gap: 1em;
    }
    .branding-title {
        font-size: 2em;
    }
    .logo-img {
        height: 80px;
    }
} 
.faq-section {
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 2em 0;
    padding: 2em 5vw;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.faq-item h3 {
    margin-bottom: 0.3em;
    color: #2193b0;
}