/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d3a;
    --secondary-color: #2d6a4f;
    --accent-color: #e63946;
    --accent-light: #ff6b6b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-menu a:hover::after {
    width: 60%;
}

.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-menu a.active::after {
    width: 60%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.95) 0%, rgba(45, 106, 79, 0.95) 100%),
                linear-gradient(135deg, #1a4d3a 0%, #2d6a4f 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    padding: 1rem 2.75rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #d62839 0%, #ff5252 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d2e 100%);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.intro-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.intro-section h2,
.why-donate-section h2,
.facts-section h2,
.how-helps-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead-text {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 400;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Facts Section */
.facts-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.facts-section h2 {
    color: white;
    position: relative;
    z-index: 1;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.fact-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.fact-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--accent-light);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.fact-description {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Help List */
.help-list {
    max-width: 950px;
    margin: 0 auto;
}

.help-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.help-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.help-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.help-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.help-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f2 100%);
    text-align: center;
    padding: 6rem 0;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 2.75rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Donate Page Styles */
.donation-guidelines,
.items-to-avoid {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
    padding: 4rem 0;
}

.guidelines-box,
.avoid-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 950px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.guidelines-box h2,
.avoid-box h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
    font-size: 2.25rem;
    font-weight: 700;
}

.guidelines-box ul,
.avoid-box ul {
    list-style: none;
    padding-left: 0;
}

.guidelines-box li,
.avoid-box li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.guidelines-box li:last-child,
.avoid-box li:last-child {
    border-bottom: none;
}

.guidelines-box li::before,
.avoid-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
    top: 1rem;
}

.avoid-box li::before {
    content: "✗";
    color: var(--accent-color);
}

.food-categories {
    padding: 5rem 0;
}

.food-categories h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.food-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.food-image {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
}

.food-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.food-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.food-examples {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f2 100%);
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 1.25rem;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

/* Locations Page Styles */
.search-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
    padding: 4rem 0;
}

.search-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.search-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    font-weight: 700;
}

.search-box p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
}

.resources-section,
.state-resources {
    padding: 5rem 0;
}

.resources-section h2,
.state-resources h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.resource-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.resource-details {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    border: 1px solid var(--border-color);
}

.resource-details p {
    margin: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.resource-details a {
    color: #1a5c3a;
    text-decoration: none;
    padding-left: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.resource-details a:hover {
    text-decoration: underline;
    font-size: calc(0.9rem + 2px);
}

.resource-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1.25rem;
    line-height: 1.6;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.state-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.state-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.state-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.75rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.state-card ul {
    list-style: none;
    padding: 0;
}

.state-card li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.state-card li:last-child {
    border-bottom: none;
}

.how-to-find {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
    padding: 5rem 0;
}

.how-to-find h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.steps-list {
    max-width: 950px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    font-family: 'Inter', sans-serif;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.types-of-locations {
    padding: 5rem 0;
}

.types-of-locations h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.location-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.location-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.location-type-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.location-type-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Impact Page Styles */
.donation-process {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.donation-process h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex: 1;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.timeline-content h3::first-letter {
    font-size: 1.3em;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.impact-stories {
    padding: 5rem 0;
}

.impact-stories h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.story-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.story-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.story-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    font-size: 0.95rem;
}

.how-it-helps {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
    padding: 5rem 0;
}

.how-it-helps h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.statistics-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.statistics-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--accent-light);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.success-factors {
    padding: 5rem 0;
}

.success-factors h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.factors-list {
    max-width: 950px;
    margin: 0 auto;
}

.factor-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.factor-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    outline: 3px solid #2d6a4f;
    outline-offset: 2px;
}

.factor-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.factor-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 24px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 5rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 3.5rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .intro-section h2,
    .why-donate-section h2,
    .facts-section h2,
    .how-helps-section h2,
    .food-categories h2,
    .resources-section h2,
    .state-resources h2,
    .how-to-find h2,
    .types-of-locations h2,
    .donation-process h2,
    .impact-stories h2,
    .how-it-helps h2,
    .statistics-section h2,
    .success-factors h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .cards-grid,
    .food-grid,
    .resource-grid,
    .state-grid,
    .stories-grid,
    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .help-item,
    .step-item,
    .timeline-item {
        flex-direction: column;
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 3.5rem 0;
    }
}
