/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    --color-primary: #DC2626;
    --color-primary-dark: #B91C1C;
    --color-accent: #1F2937;
    --color-text: #1F2937;
    --color-text-muted: #6B7280;
    --color-bg: #FFFFFF;
    --color-bg-light: #F9FAFB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Text Utilities */
.text-primary {
    color: var(--color-primary);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-light {
    background: #FFFFFF;
}

.section-gray {
    background: var(--color-bg-light);
}

.section-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 0.875rem;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    margin-bottom: 0;
}

.section-title.light {
    color: white;
}

.section-description {
    max-width: 48rem;
    margin: 2rem auto 0;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-mobile {
    width: 100%;
    margin-top: 1rem;
}

/* ===================================
   Header
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-img {
    height: 3rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-desktop {
    display: none;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-desktop {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 28rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-nav-link {
    padding: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #F3F4F6;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('hero-banner.png') center/cover;
    opacity: 0.2;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(220, 38, 38, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-container {
    position: relative;
    padding: 10rem 1rem;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
}

.hero-title {
    margin-bottom: 0;
}

.hero-subtitle {
    max-width: 48rem;
    margin: 2rem auto 0;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ===================================
   About Section
   =================================== */

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.5) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    -webkit-transition:
        background-color 700ms ease,
        color 700ms ease !important;
}

.value-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
    background: var(--color-primary);
}

.value-card:hover .value-icon {
    background: white;
}

.value-card:hover .value-icon svg {
    color: var(--color-primary);
}

.value-card:hover h4,
.value-card:hover p {
    color: white;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--color-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-icon svg {
    color: white;
}

.value-card h4 {
    margin-bottom: 0;
}

.value-card p {
    color: var(--color-text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.mission-statement {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.mission-statement h3 {
    color: white;
    margin-bottom: 0;
}

.mission-statement p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 2rem;
    margin-bottom: 0;
}

/* ===================================
   Focus Areas Section
   =================================== */

.focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.focus-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.focus-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.75rem);
}

.focus-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.focus-card:hover .focus-image img {
    transform: scale(1.1);
}

.focus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.2), transparent);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.focus-card:hover .focus-overlay {
    opacity: 0.3;
}

.focus-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.focus-icon svg {
    color: var(--color-primary);
}

.focus-content {
    padding: 2.5rem;
}

.focus-content h4 {
    margin-bottom: 0;
}

.focus-content p {
    color: var(--color-text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ===================================
   Impact Section
   =================================== */

.impact-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.impact-cta {
    text-align: center;
}

.impact-cta h3 {
    color: white;
    margin-bottom: 0;
}

.impact-cta p {
    max-width: 32rem;
    margin: 2rem auto 0;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.impact-cta .btn {
    margin-top: 2.5rem;
}

/* ===================================
   Contact Section
   =================================== */

.involvement-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.involvement-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    text-align: center;
}

.involvement-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    transform: translateY(-0.5rem);
}

.involvement-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(254, 242, 242, 1) 0%, rgba(254, 226, 226, 1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.involvement-card:hover .involvement-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.involvement-icon svg {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.involvement-card:hover .involvement-icon svg {
    color: white;
}

.involvement-card h3 {
    margin-bottom: 1rem;
}

.involvement-card p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.involvement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.involvement-link:hover {
    gap: 0.75rem;
}

.involvement-link svg {
    transition: transform 0.3s ease;
}

.involvement-link:hover svg {
    transform: translateX(0.25rem);
}

.contact-info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid #E5E7EB;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
}

.contact-info-card>p {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-detail-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #E5E7EB;
}

.contact-detail-icon svg {
    color: var(--color-primary);
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-detail-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact-detail-value:hover {
    color: var(--color-primary);
}

.social-connect {
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
}

.social-connect h4 {
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.social-link-large:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-0.25rem);
}

.social-link-large svg {
    color: var(--color-text);
    transition: color 0.3s ease;
}

.social-link-large:hover svg {
    color: white;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    text-align: center;
}

.cta-banner-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 32rem;
    margin: 1rem auto 2.5rem;
}

.cta-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 0;
}

.contact-intro {
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.contact-items {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-item-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(254, 242, 242, 1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    color: var(--color-primary);
}

.contact-item-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-item-content {
    font-weight: 500;
    font-size: 1.125rem;
}

.impact-quote {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.5) 0%, white 100%);
    border-radius: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.impact-quote p {
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    margin-top: 2rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-weight: 600;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--color-accent);
    color: white;
}

.footer .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    height: 3.5rem;
    margin-bottom: 2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-0.25rem);
}

.footer-links-group h4 {
    color: white;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 0;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .copyright,
    .footer-legal {
        text-align: left;
    }

    .cta-banner-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .section {
        padding: 10rem 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .involvement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .contact-info-section {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .header-content {
        height: 6rem;
    }

    .logo-img {
        height: 4rem;
    }

    .nav-desktop {
        display: flex;
    }

    .cta-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .contact-form-wrapper {
        padding: 3rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }

    .mission-statement {
        padding: 5rem 4rem;
    }

    .involvement-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .cta-banner {
        padding: 4rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    p {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .hero-container {
        padding: 8rem 1rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }
}