* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    color: #111;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    line-height: 1.3;
}

p {
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 20px;
    background: #111;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 6px;
    z-index: 2000;
    font-weight: 700;
}

.skip-link:focus {
    top: 20px;
}

.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;
}

a:focus,
button:focus,
input:focus {
    outline: 3px solid #111;
    outline-offset: 3px;
}

.top-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    background-color: #2F6F3E;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 20px;
}

.site-title {
    justify-self: start;
}

.site-title a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.site-title a:hover,
.site-title a:focus {
    color: #F5E7A1;
}

.main-nav {
    justify-self: center;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #F5E7A1;
}

.main-nav a[aria-current="page"] {
    text-decoration: none;
}

.socials {
    justify-self: end;
    display: flex;
    gap: 15px;
}

.socials a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.socials a:hover,
.socials a:focus {
    color: #F5E7A1;
    transform: scale(1.15);
}

.page-content {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

section {
    margin-bottom: 60px;
}

.button {
    display: inline-block;
    background-color: #2F6F3E;
    color: white;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #2f7d32;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.button:hover,
.button:focus {
    background-color: #4d9f53;
    color: white;
    transform: translateY(-2px);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 60px;
    background-color: #ffdf41;
    border-radius: 16px;
}

.hero-text {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.hero-text h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 14px;
    max-width: 650px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 650px;
    color: #222;
}

.hero-right {
    flex: 0.95;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.search-box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.search-box:focus-within {
    outline: 3px solid #111;
    outline-offset: 3px;
}

.search-box input {
    flex: 1;
    padding: 18px 22px;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.search-box button {
    background-color: #2F6F3E;
    border: none;
    padding: 18px 24px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.search-box button:hover,
.search-box button:focus {
    background-color: #4d9f53;
}

.quick-links-section {
    text-align: center;
    margin: 20px 0 50px;
}

.quick-links-section h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.quick-links-box {
    background-color: #daefd7;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(92, 171, 97, 0.3);
    border-left: 5px solid #2F6F3E;
}

.quick-links-title {
    font-size: 34px;
    margin: 0 0 10px;
    font-weight: 700;
    color: #111;
}

.quick-links-subtext {
    font-size: 18px;
    color: #444;
    margin: 0 0 30px;
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 240px;
    padding: 22px 30px;
    background-color: #2F6F3E;
    color: white;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.action-box i {
    font-size: 20px;
}

.action-box:hover,
.action-box:focus {
    background-color: #4d9f53;
    color: white;
    transform: translateY(-3px);
}

.home-steps-heading {
    text-align: center;
    margin-bottom: 32px;
}

.steps-label {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
}

.home-steps-heading h2 {
    font-size: 34px;
    margin: 0 0 10px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.steps-intro {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

.home-steps {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-step {
    display: block;
    width: calc((100% - 60px) / 3);
    background-color: #E8A05A;
    padding: 35px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    text-decoration: none;
    color: #111;
}

.home-step:hover,
.home-step:focus {
    transform: translateY(-6px);
}

.home-step h3 {
    font-size: 24px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.home-step p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.about-preview {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.about-image {
    flex: 1.3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-home-box {
    flex: 0.8;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(92, 171, 97, 0.3);
    border-left: 5px solid #2F6F3E;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-home-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
}

.about-home-box p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 220px;
}

.help-now {
    background-color: #ffdf41;
    border-radius: 24px;
    padding: 38px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.help-now-text {
    flex: 1;
}

.help-now h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0px;
}

.help-now p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 850px;
}

.help-now .button {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .top-bar {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px 20px;
        gap: 14px;
    }

    .site-title,
    .main-nav,
    .socials {
        justify-self: center;
    }

    .site-title a {
        font-size: 18px;
    }

    .main-nav ul {
        gap: 16px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .socials {
        gap: 18px;
    }

    .page-content {
        margin: 20px auto;
        padding: 16px;
    }

    section {
        margin-bottom: 40px;
    }

    .button {
        font-size: 16px;
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        padding: 35px 22px;
        gap: 30px;
        text-align: center;
    }

    .hero-text {
        padding-left: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
        max-width: 100%;
    }

    .hero-text p {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 22px;
    }

    .hero-right {
        width: 100%;
    }

    .hero-image img {
        border-radius: 14px;
    }

    .search-box {
        max-width: 100%;
    }

    .search-box input {
        padding: 16px 18px;
        font-size: 15px;
    }

    .search-box button {
        padding: 16px 20px;
        font-size: 16px;
    }

    .quick-links-box {
        padding: 28px 20px;
    }

    .quick-links-title {
        font-size: 28px;
    }

    .quick-links-subtext {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .quick-actions {
        flex-direction: column;
        gap: 14px;
    }

    .action-box {
        width: 100%;
        min-width: unset;
        font-size: 16px;
        padding: 18px 20px;
    }

    .home-steps {
        flex-direction: column;
        gap: 18px;
    }

    .home-step {
        width: 100%;
        padding: 28px 22px;
    }

    .home-step h3 {
        font-size: 22px;
    }

    .home-step p {
        font-size: 16px;
    }

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

    .about-image,
    .about-home-box {
        width: 100%;
    }

    .about-home-box {
        padding: 24px 20px;
    }

    .about-home-box h2 {
        font-size: 24px;
    }

    .info-cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
        min-width: unset;
    }

    .help-now {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 22px;
        gap: 22px;
    }

    .help-now h2 {
        font-size: 28px;
    }

    .help-now p {
        font-size: 16px;
        max-width: 100%;
    }

    .help-now .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .quick-links-title,
    .help-now h2 {
        font-size: 24px;
    }

    .top-bar {
        padding: 16px 14px;
    }

    .page-content {
        padding: 14px;
    }

    .main-nav ul {
        gap: 12px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 18px;
        overflow: hidden;
    }

    .search-box input {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .search-box button {
        width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: 0.25s ease;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-top: 0;
}

p {
    margin-top: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #111;
    outline-offset: 3px;
    border-radius: 6px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.button-secondary {
    background-color: white;
    color: #111;
    border: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    padding: 16px 34px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}

.button-secondary:hover,
.button-secondary:focus {
    background-color: #111;
    color: white;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ffdf41;
    padding: 55px;
    border-radius: 26px;
}

.about-hero-image {
    flex: 1;
    order: 1;
}

.about-hero-text {
    flex: 1;
    order: 2;
}

.about-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.about-intro {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.about-main-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-main-text h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.about-side-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.about-side-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.about-side-box ul {
    margin: 0;
    padding-left: 20px;
}

.about-side-box li {
    margin-bottom: 12px;
}

.about-highlight {
    margin-top: 10px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid rgba(92, 171, 97, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.highlight-card i {
    font-size: 38px;
    color: #ffdf41;
    flex-shrink: 0;
    line-height: 1;
    margin-top: -20px;
}

.highlight-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 1.2;
}

.section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.section-label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
}

.section-heading h2 {
    font-size: 34px;
    margin-bottom: 0;
}

.values-grid {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 280px;
    background-color: #f2a65a;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    margin-bottom: 18px;
}

.value-icon i {
    font-size: 22px;
    color: #111;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.value-card p {
    margin-bottom: 0;
}

.about-principles {
    background-color: #dcefd7;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.principles-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.principle-box {
    flex: 1 1 240px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    border-top: 5px solid #2F6F3E;
}

.principle-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.principle-box p {
    margin-bottom: 0;
}

.about-cta {
    background-color: #ffdf41;
    border-radius: 24px;
    padding: 38px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cta-text h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.cta-text p {
    margin-bottom: 0;
    max-width: 700px;
}

@media (max-width: 1000px) {
    .about-hero,
    .about-intro,
    .about-cta {
        flex-direction: column;
    }

    .about-hero {
        padding: 36px 24px;
    }

    .about-hero-text h1 {
        font-size: 38px;
    }

    .about-hero-image img {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .about-hero-text h1 {
        font-size: 32px;
    }

    .hero-intro,
    .about-main-text p,
    .about-side-box li,
    .value-card p,
    .principle-box p,
    .cta-text p {
        font-size: 16px;
    }

    .about-main-text,
    .about-side-box,
    .value-card,
    .principle-box,
    .about-principles,
    .about-cta {
        padding: 22px;
    }

    .section-heading h2,
    .cta-text h2 {
        font-size: 28px;
    }
}

.find-food-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ffdf41;
    padding: 55px;
    border-radius: 26px;
}

.find-food-hero-text {
    flex: 1;
}

.find-food-hero-image {
    flex: 1;
}

.find-food-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    display: block;
}

.eyebrow {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
}

.hero-intro {
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 640px;
}

.find-food-intro {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.find-food-main-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.find-food-main-text h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.find-food-main-text p {
    margin-bottom: 18px;
}

.find-food-side-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.find-food-side-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.find-food-side-box ul {
    margin: 0;
    padding-left: 20px;
}

.find-food-side-box li {
    margin-bottom: 12px;
}

.find-food-highlight {
    margin-top: 10px;
}

.find-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid rgba(92, 171, 97, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.find-highlight-card i {
    font-size: 24px;
    color: #2F6F3E;
    margin-top: 4px;
}

.find-highlight-card h2 {
    margin-bottom: 8px;
    font-size: 26px;
}

.find-food-options .section-heading,
.find-food-steps .section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.find-options-grid {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.find-option-card {
    flex: 1 1 280px;
    background-color: #F2A65A;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.find-option-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    margin-bottom: 18px;
}

.find-option-icon i {
    font-size: 22px;
    color: #111;
}

.find-option-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.find-option-card p {
    margin-bottom: 18px;
}

.text-link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.text-link:hover,
.text-link:focus {
    color: #111;
    border-bottom-color: #2F6F3E;
}

.find-food-steps {
    background-color: #dcefd7;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.find-steps-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.find-step-box {
    flex: 1 1 240px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    border-top: 5px solid #2F6F3E;
}

.find-step-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.find-step-box p {
    margin-bottom: 0;
}

.find-support-strip {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.find-support-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.find-support-text h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.find-support-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.find-support-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.find-support-box p:last-child {
    margin-bottom: 0;
}

.find-food-cta {
    background-color: #ffdf41;
    border-radius: 24px;
    padding: 38px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.find-food-cta .cta-text h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.find-food-cta .cta-text p {
    margin-bottom: 0;
    max-width: 700px;
}

@media (max-width: 1000px) {
    .find-food-hero,
    .find-food-intro,
    .find-support-strip,
    .find-food-cta {
        flex-direction: column;
    }

    .find-food-hero {
        padding: 36px 24px;
    }

    .find-food-hero-image img {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .find-food-main-text,
    .find-food-side-box,
    .find-option-card,
    .find-step-box,
    .find-food-steps,
    .find-support-text,
    .find-support-box,
    .find-food-cta {
        padding: 22px;
    }

    .find-food-main-text h2,
    .find-support-text h2,
    .find-food-cta .cta-text h2 {
        font-size: 28px;
    }

    .hero-intro,
    .find-food-main-text p,
    .find-food-side-box li,
    .find-option-card p,
    .find-step-box p,
    .find-support-text p,
    .find-support-box p {
        font-size: 16px;
    }
}

.support-page-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ffdf41;
    padding: 55px;
    border-radius: 26px;
}

.support-page-hero-image {
    flex: 1;
    order: 1;
}

.support-page-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    display: block;
}

.support-page-hero-text {
    flex: 1;
    order: 2;
}

.support-page-intro {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.support-page-main-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.support-page-main-text h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.support-page-main-text p {
    margin-bottom: 18px;
}

.support-page-side-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.support-page-side-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.support-page-side-box ul {
    margin: 0;
    padding-left: 20px;
}

.support-page-side-box li {
    margin-bottom: 12px;
}

.support-page-highlight {
    margin-top: 10px;
}

.support-highlight-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid rgba(92, 171, 97, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.support-highlight-card i {
    font-size: 38px;
    color: #4d9f53;
    flex-shrink: 0;
    line-height: 1;
    margin-top: -20px;
}

.support-highlight-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 1.2;
}

.support-page-steps {
    background-color: #dcefd7;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.support-steps-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.support-step-box {
    flex: 1 1 240px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    border-top: 5px solid #2F6F3E;
}

.support-step-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.support-step-box p {
    margin-bottom: 0;
}

.support-options-grid {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.support-option-card {
    flex: 1 1 280px;
    background-color: #F2A65A;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.support-option-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    margin-bottom: 18px;
}

.support-option-icon i {
    font-size: 22px;
    color: #111;
}

.support-option-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.support-option-card p {
    margin-bottom: 18px;
}

.support-extra-strip {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.support-extra-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.support-extra-text h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.support-extra-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.support-extra-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.support-extra-box p:last-child {
    margin-bottom: 0;
}

.support-page-cta {
    background-color: #ffdf41;
    border-radius: 24px;
    padding: 38px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.support-page-cta .cta-text h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.support-page-cta .cta-text p {
    margin-bottom: 0;
    max-width: 700px;
}

@media (max-width: 1000px) {
    .support-page-hero,
    .support-page-intro,
    .support-extra-strip,
    .support-page-cta {
        flex-direction: column;
    }

    .support-page-hero {
        padding: 36px 24px;
    }

    .support-page-hero-image,
    .support-page-hero-text {
        order: unset;
    }

    .support-page-hero-image img {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .support-page-main-text,
    .support-page-side-box,
    .support-step-box,
    .support-option-card,
    .support-extra-text,
    .support-extra-box,
    .support-page-steps,
    .support-page-cta {
        padding: 22px;
    }

    .support-page-main-text h2,
    .support-extra-text h2,
    .support-page-cta .cta-text h2 {
        font-size: 28px;
    }

    .support-page-main-text p,
    .support-page-side-box li,
    .support-step-box p,
    .support-option-card p,
    .support-extra-text p,
    .support-extra-box p {
        font-size: 16px;
    }
}

.donate-alt-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ffdf41;
    padding: 55px;
    border-radius: 26px;
}

.donate-alt-hero-text {
    flex: 1;
}

.donate-alt-hero-image {
    flex: 1;
}

.donate-alt-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    display: block;
}

.donate-alt-intro {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.donate-alt-main-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 30px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.donate-alt-main-text h2 {
    margin-bottom: 22px;
    font-size: 26px;
    line-height: 1.2;
}

.donate-alt-main-text p {
    margin-bottom: 18px;
}

.donate-alt-main-text ul {
    margin: 0;
    padding-left: 20px;
}

.donate-alt-main-text li {
    margin-bottom: 12px;
}

.donate-alt-side-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.donate-alt-side-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.donate-alt-side-box ul {
    margin: 0;
    padding-left: 20px;
}

.donate-alt-side-box li {
    margin-bottom: 12px;
}

.donate-alt-feature {
    margin-top: 10px;
}

.donate-alt-feature-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 30px 32px;
    border: 1px solid rgba(92, 171, 97, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.donate-alt-feature-icon {
    flex-shrink: 0;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-alt-feature-icon i {
    font-size: 42px;
    color: #ffdf41;
    line-height: 1;
    display: block;
}

.donate-alt-feature-text {
    flex: 1;
}

.donate-alt-feature-text h2 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
}

.donate-alt-feature-text p {
    margin: 0;
    line-height: 1.7;
}

.donate-alt-options .section-heading,
.donate-alt-steps .section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.donate-alt-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.donate-alt-large-card,
.donate-alt-small-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #F2A65A;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.donate-alt-small-cards {
    display: contents;
}

.donate-highlight-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(92, 171, 97, 0.12);
    border-radius: 14px;
}

.donate-highlight-icon i {
    font-size: 20px;
    color: #2F6F3E;
}

.donate-alt-large-card h3,
.donate-alt-small-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.donate-alt-large-card p,
.donate-alt-small-card p {
    margin-bottom: 0;
    flex: 1;
}

.donate-alt-large-card .text-link,
.donate-alt-small-card .text-link {
    margin-left: auto;
    flex-shrink: 0;
}

.donate-alt-steps {
    background-color: #dcefd7;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.donate-alt-steps .section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.donate-alt-steps-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.donate-alt-step-box {
    flex: 1 1 240px;
    background-color: white;
    border-radius: 18px;
    padding: 26px;
    border-top: 5px solid #2F6F3E;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.donate-alt-step-box h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.donate-alt-step-box p {
    margin-bottom: 0;
    line-height: 1.7;
}

.donate-alt-lower {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.donate-alt-lower-text {
    flex: 2;
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 20px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.donate-alt-lower-text h2 {
    margin-bottom: 16px;
    font-size: 30px;
}

.donate-alt-lower-box {
    flex: 1;
    background-color: #daefd7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.donate-alt-lower-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.donate-alt-lower-box p:last-child {
    margin-bottom: 0;
}

.donate-alt-cta {
    background-color: #ffdf41;
    border-radius: 24px;
    padding: 38px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.donate-alt-cta .cta-text h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.donate-alt-cta .cta-text p {
    margin-bottom: 0;
    max-width: 700px;
}

@media (max-width: 1000px) {
    .donate-alt-hero,
    .donate-alt-intro,
    .donate-alt-lower,
    .donate-alt-cta {
        flex-direction: column;
    }

    .donate-alt-hero {
        padding: 36px 24px;
    }

    .donate-alt-hero-image img {
        margin: 0 auto;
    }
}

@media (max-width: 800px) {
    .donate-alt-large-card,
    .donate-alt-small-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .donate-alt-large-card .text-link,
    .donate-alt-small-card .text-link {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .donate-alt-main-text,
    .donate-alt-side-box,
    .donate-alt-feature-card,
    .donate-alt-large-card,
    .donate-alt-small-card,
    .donate-alt-step-box,
    .donate-alt-steps,
    .donate-alt-lower-text,
    .donate-alt-lower-box,
    .donate-alt-cta {
        padding: 22px;
    }

    .donate-alt-main-text h2,
    .donate-alt-lower-text h2,
    .donate-alt-cta .cta-text h2,
    .donate-alt-feature-text h2 {
        font-size: 28px;
    }
}

.contact-hero {
    background-color: #ffdf41;
    border-radius: 26px;
    padding: 55px;
    margin-bottom: 30px;
}

.contact-hero-text {
    max-width: 760px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 30px;
}

.contact-form-box {
    background-color: #dcefd7;
    padding: 34px;
    border-radius: 24px;
    border-left: 6px solid #2F6F3E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.contact-form-box h2,
.contact-info-box h2 {
    font-size: 30px;
    line-height: 1.2;
    min-height: 58px;
    margin-bottom: 10px;
}

.contact-form-intro {
    margin-top: 0;
    margin-bottom: 30px;
    max-width: 650px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #111;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F6F3E;
    box-shadow: 0 0 0 4px rgba(92, 171, 97, 0.15);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 2px;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    margin: 0;
    font-size: 15px;
}

.contact-form .button {
    align-self: flex-start;
    margin-top: 6px;
}

.contact-info-box {
    background-color: #daefd7;
    padding: 34px 30px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(92, 171, 97, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #ffffff;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(92, 171, 97, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(92, 171, 97, 0.12);
    border-radius: 14px;
}

.contact-icon i {
    font-size: 20px;
    color: #2F6F3E;
}

.contact-detail-card h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-detail-card p {
    margin: 0;
}

.contact-detail-card a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.contact-detail-card a:hover,
.contact-detail-card a:focus {
    text-decoration: underline;
}

.contact-mini-help {
    margin-top: 20px;
    padding-top: 22px;
    border-top: 5px solid #2F6F3E;
}

.contact-mini-help h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.contact-mini-help ul {
    margin: 0;
    padding-left: 20px;
}

.contact-mini-help li {
    margin-bottom: 10px;
}

.contact-urgent-box {
    background-color: #ffdf41;
    border-radius: 24px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.contact-urgent-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-urgent-text p {
    margin: 0;
    max-width: 700px;
}

@media (max-width: 1000px) {
    .contact-layout,
    .contact-urgent-box {
        display: flex;
        flex-direction: column;
    }

    .contact-hero {
        padding: 36px 24px;
    }

    .contact-form-box h2,
    .contact-info-box h2 {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box,
    .contact-info-box,
    .contact-urgent-box {
        padding: 24px;
    }

    .contact-form-box h2,
    .contact-info-box h2,
    .contact-urgent-text h2 {
        font-size: 28px;
    }

    .contact-mini-help h3,
    .contact-detail-card h3 {
        font-size: 22px;
    }
}

/* footer */
.site-footer {
    width: 100%;
    background-color: #2F6F3E;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.footer-row {
    width: 100%;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.footer-text {
    margin: 0;
    color: white;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: white;
    font-size: 17px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
    color: #ffdf41;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .footer-row {
        padding: 16px 24px;
        flex-direction: column;
        justify-content: center;
    }
}