* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #081C15;
    background: #deebee;
    overflow-x: hidden;
}

header {
    background: #1B4332;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #ff5252;
}

header .brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .brand img {
    width: 100px;
    height: auto;
    border-radius: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 20px;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
}

main > section {
    margin-bottom: 1.2rem;
    padding: 1rem 0;
}

.hero-section .hero-content {
    flex: 1;
}

.hero-section .hero-image-container {
    flex: 1;
    text-align: center;
}

.hero-image-placeholder {
    background: transparent;
    border-radius: 12px;
    border: 0;
    overflow: hidden;
}

.hero-image-placeholder img,
.infographic-placeholder img,
.about-card img,
.diamondback-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.btn {
    background: #70c058;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    align-items: center;
}

.crisis-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 3rem;
    text-align: center;
}

.crisis-section .btn {
    margin: 0 auto;
    display: inline-block;
}

.crisis-section h2 {
    color: #1B4332;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.crisis-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #081C15;
}

footer {
    background: #1B4332;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.contact-class{
    text-align: center;
}

.container{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.index-color,
.about-color,
.stories-color,
.involved-color,
.contact-color {
    border: 0;
    box-shadow: none;
    padding: 2rem 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 1rem;
    border-radius: 12px;
}

.index-color {
    background:#9ae9ec;
}

.about-color {
    background:#9ae9ec;
}

.stories-color {
    background:#9ae9ec;
}

.involved-color {
    background:#9ae9ec;
}

.contact-color {
    background:#9ae9ec;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.about-card {
    flex: 1 1 calc(33.33% - 0.67rem);
    min-width: 260px;
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.14);
}

.infographic-placeholder {
    background: #ddd;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border-radius: 12px;
    border: 0;
    margin-top: 2rem;
    overflow: hidden;
}

.infographic-placeholder img,
.about-card img,
.diamondback-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.victories-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.victories-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1B4332;
}

.victory-card {
    display: flex;
    background: white;
    margin-bottom: 1.4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.victory-image {
    flex: 1;
    max-height: 600px;
}

.victory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.victory-content {
    flex: 1.5;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.victory-title {
    color: #2EB67D;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.help-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.help-card {
    flex: 1 1 calc(33.33% - 0.67rem);
    min-width: 260px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 14px rgba(0,0,0,0.12);
}

.help-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.help-card h3,
.help-card p {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.help-image-placeholder {
    background: #ddd;
    border-radius: 12px;
    /* padding: 60px 20px; */
    border: 2px dashed #999;
    margin-top: 10px;
}

.contact-form-container,
.contact-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 1.75rem;
    max-width: 700px;
    margin: 1.2rem auto;
    width: 100%;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-input {
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

.contact-textarea {
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

.contact-button {
    background: #cd1818;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}


@media (max-width: 980px) {
    header {
        padding: 0.8rem 3%;
        flex-wrap: wrap;
        row-gap: 0.75rem;
    }
    .hero-section {
        padding: 1.6rem 0;
    }
    .about-container {
        flex-direction: column;
        gap: 1rem;
    }
    .about-card {
        flex: 1 1 100%;
        min-width: unset;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 3rem 0;
    }

    .hero-section .hero-content,
    .hero-section .hero-image-container {
        width: 100%;
    }

    .crisis-section {
        padding: 2.5rem 1rem;
    }

    .about-container {
        flex-direction: column;
    }

    .victory-card {
        flex-direction: column;
    }

    .help-section {
        flex-direction: row;
    }

    .hero-image-placeholder,
    .infographic-placeholder,
    .hero-image-placeholder img,
    .infographic-placeholder img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

.animate-on-scroll, .popup {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.6s ease forwards;
}

.popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    animation: popIn 0.35s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .help-section {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    header {
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-image-placeholder {
        padding: 40px 16px;
    }

    .btn {
        padding: 10px 16px;
        width: auto;
    }

    .crisis-section h2 {
        font-size: 1.6rem;
    }

    .crisis-section {
        padding: 2.5rem 1rem;
    }
}

@media (max-width: 640px) {
    header {
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-image-placeholder {
        padding: 40px 16px;
    }

    .btn {
        padding: 10px 16px;
        width: auto;
    }

    .crisis-section h2 {
        font-size: 1.6rem;
    }

    .crisis-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-container {
        flex-direction: column;
    }

    .infographic-placeholder {
        padding: 40px 16px;
    }

    .victory-card {
        flex-direction: column;
    }

    .victory-image {
        max-height: 300px;
    }

    .help-section {
        flex-direction: column;
    }

    .help-image-placeholder {
        padding: 40px 16px;
    }

    .hero-image-placeholder,
    .infographic-placeholder,
    .hero-image-placeholder img,
    .infographic-placeholder img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .contact-input, .contact-textarea {
        padding: 8px;
    }

    .contact-button {
        padding: 12px;
    }

}


#get-involved {
    background: var(--white);
}

.involved-header {
    margin-bottom: 3rem;
}

.involved-hero-text {
    font-size: 1.25rem;
    color: var(--text-mid);
    max-width: 700px;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.way-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.way-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.way-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.way-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.way-card:hover .way-img img {
    transform: scale(1.06);
}

.way-body {
    padding: 1.5rem;
}

.way-icon {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
}

.way-body h3 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 0.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

.way-body p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.involved-action-strip {
    background: linear-gradient(135deg, var(--red-mid), var(--red-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}

.involved-action-strip h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.involved-action-strip p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--red-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-white:hover {
    background: #FFEBEE;
    transform: translateY(-2px);
}


#contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-hotline-box {
    background: var(--green-dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}

.contact-hotline-box .hotline-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.contact-hotline-box .hotline-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD54F;
    letter-spacing: 0.04em;
}

.contact-hotline-box .hotline-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.detail-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-subtext {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 1.75rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #DDE8DD;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-mid);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    background: rgb(240, 255, 143);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.04em;
}

.btn-submit:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
}