body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.header-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 900px;
    background: url("mom.jpg") no-repeat center center;
    background-size: cover;
}

.header-container .gfm-embed {
    position: absolute;
    bottom: 10%;
    right: 10%;
    border-radius: 20px;
    max-height: 400px;
    overflow: hidden;
}

.intro-section .gfm-embed {
    max-height: 210px;
    overflow: hidden;
    margin-top: 64px;
}

.header-container .header-title {
    position: absolute;
    top: 10%;
    left: 10%;
    color: #000000;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
}

.header-container .header-title h2 {
    color: #e74c3c;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.header-container .header-title h3 {
    border-top-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.header-container .header-title h2, .header-container .header-title h3 {
    background-color: #ffffff;
    display: inline-block;
    margin: 0;
    padding: 0 8px;
}


.right-donate-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.3rem 1.3rem;
    color: #fff;
    background: #e74c3c;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 2;
}

.right-donate-button:hover {
    background: #c0392b;
}

.intro-section {
    background-color: #fdfdfd;
    text-align: center;
}

.intro-content h2 {
    color: #e74c3c;
    font-size: 2.3rem;
}

.intro-section p {
    font-size: 1.2rem;
}

.donate-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: #fff;
    background: #e74c3c;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.donate-button:hover {
    background: #c0392b;
}

#intro {
    max-width: 700px;
}

section {
    padding: 32px;
    line-height: 1.2;
    width: 80%;
    margin: auto;
}

.project {
    display: flex;
    margin-bottom: 2rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.project-image-container {
    min-width: 40%;
    max-width: 40%;
    background-size: cover;
    background-position: center center;
}

.project-info {
    padding: 16px 32px;
}

.project-info h3 {
    margin-top: 0;
    color: #e74c3c;
    text-transform: uppercase;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.inner-footer {
    width: 80%;
    margin: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media (max-width: 768px) {
    .header-container .gfm-embed {
        border-radius: 20px;
        max-height: 48px;
        max-width: 192px;
        overflow: hidden;
        right: 50%;
        translate: 50%;
    }
    .header-container .header-title h2 {
        font-size: 1.75rem;
    }
    .header-container .header-title h3 {
        font-size: 1.45rem;
    }
    .header-container .header-title div:first-child {
        height: 32px;
    }
    .header-container .header-title div:nth-child(2) {
        height: 28px;
    }
    .gfm-embed.desktop {
        display: none;
    }

    .project {
        flex-direction: column;
    }

    .project img {
        width: 100%;
        padding-bottom: 40%;
    }

    .project-image-container {
        min-width: 100%;
        max-width: 100%;
        padding-bottom: 60%;
    }
}

@media (min-width: 769px) {
    .gfm-embed.mobile {
        display: none;
    }

}