/* ============================================
   Morris for Georgia - Campaign Website
   Modern, Clean, Responsive Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Soft Blues/Greens */
    --primary: #2d6a7a;
    --primary-dark: #1e4d5a;
    --primary-light: #4a8fa0;

    /* Accent - Peach (from logo 4) */
    --accent: #e8a87c;
    --accent-light: #f5d5c3;
    --accent-dark: #d4926a;

    /* Navy (from logo 4) */
    --navy: #1a3a4a;
    --navy-light: #2d5568;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;

    /* Transitions */
    --transition: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Labels & Titles */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.centered { text-align: center; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
    overflow: hidden;
}

.nav-logo-img {
    height: 120px;
    width: auto;
    object-fit: cover;
    object-position: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary);
}

.btn-outline-nav {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    color: var(--gray-700);
}

.btn-outline-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary-nav {
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--navy);
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary-nav:hover {
    background: var(--accent-dark);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--gray-50) 50%, var(--white) 100%);
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-image-side {
    position: relative;
}

.hero-headshot-wrapper {
    max-width: 500px;
    margin-left: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-headshot {
    width: 115%;
    max-width: none;
    margin-left: -12%;
    display: block;
}

.hero-content {
    max-width: 600px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hero-badge strong {
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.hero-logo {
    max-width: 480px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    max-width: 800px;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--gray-500);
    text-align: center;
    font-style: italic;
}

/* ============================================
   Experience Section
   ============================================ */
.experience {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.experience-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.experience-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 4px solid var(--accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ============================================
   Quote Banner
   ============================================ */
.quote-banner {
    background: var(--navy);
    padding: 4rem 0;
}

.quote-banner blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-banner p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quote-banner em {
    color: var(--accent);
    font-style: normal;
}

.quote-banner cite {
    font-size: 1rem;
    color: var(--gray-400);
    font-style: normal;
}

/* ============================================
   Issues Section
   ============================================ */
.issues {
    padding-top: var(--section-padding);
    padding-bottom: 0;
    background: var(--white);
}

.issues .section-header {
    margin-bottom: 3rem;
}

/* Detailed Issue Sections */
.issue-detail {
    padding: 4rem 0;
    background: var(--gray-50);
}

.issue-detail-alt {
    background: var(--white);
}

.issue-detail-grid {
    max-width: 800px;
    margin: 0 auto;
}

.issue-detail-content {
    position: relative;
}

.issue-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.issue-detail-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-dark);
}

.issue-detail h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.issue-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.issue-detail p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.issue-detail strong {
    color: var(--navy);
}

.issue-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.issue-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.issue-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.issue-list li strong {
    color: var(--navy);
}

.issue-closing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--accent-light);
    font-size: 1.0625rem;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content em {
    color: var(--accent);
    font-style: normal;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Endorsements Section
   ============================================ */
.endorsements {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.endorsements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.endorsement-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.5;
}

.endorsement-card blockquote {
    position: relative;
    z-index: 1;
}

.endorsement-card blockquote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.endorser {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.endorser strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
}

.endorser span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   Events Section
   ============================================ */
.events {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.event-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    background: var(--accent-light);
    padding: 1rem 0.75rem;
    border-radius: 8px;
}

.event-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
}

.event-date .day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.event-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.event-meta {
    margin-bottom: 1rem;
}

.event-meta span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   Donate Section
   ============================================ */
.donate {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donate-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.donate-list {
    list-style: none;
    margin-top: 1.5rem;
}

.donate-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.donate-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.donate-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.donate-card h3 {
    margin-bottom: 1.5rem;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all var(--transition);
}

.amount-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.amount-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-donate {
    margin-bottom: 1rem;
}

.donate-disclaimer {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    transition: color var(--transition);
}

a.contact-item:hover {
    color: var(--primary);
}

.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-600);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: all var(--transition);
}

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

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
}

.footer-main {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 200px;
    margin: 0 auto 1rem;
    border-radius: 6px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--accent);
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: var(--gray-400);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

/* ============================================
   Notification Toast
   ============================================ */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(calc(100% + 3rem));
    transition: transform var(--transition);
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

.notification p {
    margin: 0;
}

.notification-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.notification-close:hover {
    opacity: 1;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-image-side {
        order: -1;
    }

    .hero-headshot {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo {
        margin: 0 auto 1.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-stats {
        flex-direction: row;
    }

    .stat-card {
        flex: 1;
    }

    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .donate-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
    }

    .btn-outline-nav,
    .btn-primary-nav {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-values {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-logo {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .experience-stats {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
