* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
.hero {
    overflow-x: hidden;
}

:root {
    --primary-light: #05316b;
    --primary-dark: #000000;
    --primary-accent: #c21f26;
    --white: #ffffff;
    --text-dark: #1a252f;
    --text-muted: #1b344c;
    --bg-light: #fafdff;
    --border-light: #eef6e4;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%
}


.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.site-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 80px;
}

.site-logo:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-start;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
}

nav {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
    flex: 1;
    justify-content: flex-start;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    z-index: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: var(--primary-dark);
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    transform: scale(1);
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 1010;
    margin-left: auto;
    display: none;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: skewX(30deg) translateX(4px);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
    transform: skewX(-30deg);
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: skewX(30deg) translateX(-4px);
}

.cta-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-align: center;
    white-space: nowrap;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-square:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(119, 170, 52, 0.15);
}

.hero {
    min-height: 75vh;
    background-color: #003665;
    color: var(--white);
    padding: 2rem 2rem;
    position: relative;
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
    margin-top: 120px;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image:
        linear-gradient(135deg, #0b1426 25%, transparent 25%),
        linear-gradient(225deg, #0b1426 25%, transparent 25%);
    background-position: 0 0;
    background-size: 20px 20px;
    background-repeat: repeat-x;
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    gap: 3rem;
}


.hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
    padding-top: 10px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: table;
}

.hero h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
}

.hero h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
    font-weight: 900;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.5rem;
    opacity: 0.85;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-cta-subtext {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.hero-cta-subtext::before {
    content: "";
    height: 1em;
    border-left: 5px solid currentColor;
    box-shadow:
        10px 0 0 0 currentColor,
        20px 0 0 0 currentColor;
    transform: skewX(-22deg);
    margin-right: 20px;
    flex-shrink: 0;
    display: inline-block;
}


.hero-image {
    flex: 1.3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}


.hero-image::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    top: -30px;
    right: -30px;
    z-index: 1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
}

.hero-image::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    bottom: -30px;
    right: calc(min(100%, 590px) - 45px);
    z-index: 1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
}


.hero::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image:
        linear-gradient(135deg, #003665 25%, transparent 25%),
        linear-gradient(225deg, #003665 25%, transparent 25%);
    background-position: 0 0;
    background-size: 20px 20px;
    background-repeat: repeat-x;
}

.hero-cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}


.hero-cta {
    display: inline-block;
    background-color: #82cfff;
    color: #2d3748;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    align-items: center;
}

.hero-cta:hover {
    background-color: #c9e1f6;
    transform: translateY(-2px) scale(1.20);
    box-shadow: 0 6px 20px rgba(241, 241, 241, 0.4);
}



.page-header {
    min-height: 30vh;
    background-color: #003665;
    color: var(--white);
    padding: 2rem 2rem;
    position: relative;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible !important;
    margin-top: 120px;
}

.page-header div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
    padding-bottom: 8px;
    display: inline-block;
    border-bottom: 3px solid var(--white, #ffffff);
}

.page-header p {
    margin-top: 10px;
    font-size: 1.1rem;
}


.page-header::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image:
        linear-gradient(135deg, #003665 25%, transparent 25%),
        linear-gradient(225deg, #003665 25%, transparent 25%);
    background-position: 0 0;
    background-size: 20px 20px;
    background-repeat: repeat-x;
    z-index: 2;
}


.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 1.1em;
}

.body-grid {
    display: grid;
    gap: 4rem;
}

.content-area h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    margin-top: 40px;
}

.content-area p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.help-section {
    background-color: #f4f1ea;
    color: #2d3748;
    margin-top: 40px !important;
}

.contact-section {
    background-color: #1a2638;
    color: #ffffff;
}

.page-header.has-featured-image {
    position: relative;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header.has-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
}

.pattern-wrapper {
    font-size: 1.5rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f3f1e9;
    background-image: conic-gradient(from 60deg at 56.25% calc(425% / 6), transparent 0deg, transparent 0.5deg, rgba(50, 50, 50, 0.2) 0.5deg, rgba(50, 50, 50, 0.2) 119.5deg, transparent 119.5deg, transparent 120deg), conic-gradient(from 60deg at 56.25% calc(425% / 6), transparent 0deg, transparent 0.5deg, rgba(50, 50, 50, 0.2) 0.5deg, rgba(50, 50, 50, 0.2) 119.5deg, transparent 119.5deg, transparent 120deg), conic-gradient(from 180deg at 43.75% calc(425% / 6), transparent 0deg, transparent 0.5deg, rgba(50, 50, 50, 0.2) 0.5deg, rgba(50, 50, 50, 0.2) 119.5deg, transparent 119.5deg, transparent 120deg), conic-gradient(from 180deg at 43.75% calc(425% / 6), transparent 0deg, transparent 0.5deg, rgba(50, 50, 50, 0.2) 0.5deg, rgba(50, 50, 50, 0.2) 119.5deg, transparent 119.5deg, transparent 120deg), conic-gradient(from -60deg at 50% calc(175% / 12), transparent 0deg, transparent 0.5deg, rgba(50, 50, 50, 0.2) 0.5deg, rgba(50, 50, 50, 0.2) 119.5deg, transparent 119.5deg, transparent 120deg), conic-gradient(from -60deg at 50% calc(175% / 12), transparent 0deg, transparent 0.5deg, rgba(50, 50, 50, 0.2) 0.5deg, rgba(50, 50, 50, 0.2) 119.5deg, transparent 119.5deg, transparent 120deg);
    background-position: 0 0, 10px 17px, 0 0, 10px 17px, 10px 0, 0 17px;
    background-size: 20px 34px;
}


.campaign-section {
    font-size: 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    padding: 5rem 4rem;
    background-color: #f3f1e9;
    max-width: 1200px;
    border-radius: 8px;
    align-items: center;
    margin: 3rem auto 60px auto !important;
}

.help-section {
    font-size: 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    padding: 5rem 4rem;
    max-width: 1200px;
    border-radius: 8px;
    align-items: center;
    margin: 3rem auto 60px auto !important;
    background-color: #f3f1e9;
}

.contact-section {
    align-items: start;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    padding: 5rem 4rem;
    max-width: 1200px;
    border-radius: 8px;
    align-items: center;
    margin: -25px auto 60px auto !important;
}

.campaign-image img,
.help-image img {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.help-content h2 .campaign-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.help-section .help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 40px !important;
}

.campaign-content h2 a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.campaign-content h2 a:hover {
    text-decoration: underline;
    color: rgb(165, 66, 4);
}

.help-content p campaign-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.case-section {
    border: 2px solid #e8e8c8;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8em;
    letter-spacing: 1px;
}

.case-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-section {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 25px;
}

.donate-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #05316b;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #05316b;
    margin-bottom: 40px;
}

.donate-button:hover {
    background-color: #ffffff;
    color: #05316b;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.contact-details {
    font-style: normal;
}

.address-line {
    font-size: 1.15rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.phone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
}

.phone-list li {
    display: contents;
    /* This allows the list items to sit directly in the grid */
    font-size: 1.05rem;
    color: #cbd5e1;
}

.phone-label {
    font-weight: 600;
    color: #fff;
    margin-right: 6px;
}


.phone-list a {
    color: #63b3ed;
    text-decoration: none;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Existing form-group styles remain the same */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    /* Added for spacing between groups */
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

/* Target the inputs generated by CF7 */
.form-group .wpcf7-form-control {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.25s ease;
    width: 100%;
    /* Ensures inputs fill the container */
}

.form-group .wpcf7-form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.2);
}

.submit-btn {
    padding: 1rem 3rem;
    background-color: #ffffff;
    color: #1a2638;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.submit-btn:hover {
    background-color: #c9e1f6;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sponsors-section {
    display: block !important;
    width: 100% !important;
    margin-top: 60px !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsors-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}


.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}


.footer {
    background-color: #1a2638;
    color: var(--white, #ffffff);
    padding: 5rem 2rem 2.5rem 2rem;
    margin-top: auto;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3.5rem;
}

.footer-site-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: right;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.footer-credit {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-credit a {
    text-decoration: none;
    color: #94a3b8;

}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: var(--primary-accent, #c21f26);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #ffffff;
    transform: translateY(-2px);
}

.back-to-top:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


.phone-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.address-line a {
    color: white;
    text-decoration: none;
}

.phone-label {
    display: inline-block;
    margin-top: 0;
    white-space: nowrap;
}

.submit-btn {
    width: 100%;
}


html,
body,
.hero {
    overflow-x: hidden;
}



/* MOBILE RESPONSIVE (TABLETS & PHONES) */
@media (max-width: 768px) {

    .main-content,
    .hero,
    .sponsors-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 1.2rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 0;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-subtext {
        font-size: 1.1rem;
        justify-content: center;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        display: none !important;
    }

    /* Content */
    .content-area h2 {
        font-size: 1.75rem;
    }

    /* Campaign */
    .campaign-section,
    .help-section,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin: 2rem auto !important;
    }

    .contact-section {
        margin-top: 0 !important;
    }

    .campaign-image img,
    .help-image img {
        height: 280px;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 2rem;
    }

    .phone-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .phone-label {
        display: inline-block;
        margin-top: 0;
        white-space: nowrap;
    }

    .submit-btn {
        width: 100%;
    }

    /* Sponsors */
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sponsor-logo {
        max-height: 60px;
    }

    /* Case Section */
    .case-section {
        padding: 1.5rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .campaign-section,
    .help-section,
    .contact-section {
        padding: 1.5rem 1rem;
    }

    .campaign-image img,
    .help-image img {
        height: 220px;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation & Footer (Tablets/Laptops) */
@media (max-width: 1024px) {
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }

    nav {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
        padding: 0 20px;
    }

    .nav-menu.is-open {
        max-height: 300px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        /* Fixed from right-aligned to match the other blocks */
    }

    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-site-title {
        font-size: 1.5rem !important;
    }

    .footer-tagline {
        font-size: 0.9rem !important;
    }

    .footer-nav .menu-item a {
        font-size: 1rem !important;
    }
}

/* Desktop Only Centering Rule */
@media (min-width: 1025px) {
    .nav-menu {
        margin-left: auto;
        margin-right: auto;
    }
}