/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #006400;
    --secondary-color: #0077B6;
    --accent-color: #F4C542;
    --highlight-color: #8B0000;
    --text-dark: #1C1C1C;
    --text-light: #4a4a4a;
    --bg-light: #F5F5DC;
    --bg-white: #FAFAFA;
    --border-color: #d4d4aa;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #006400 0%, #004d00 100%);
    --gradient-secondary: linear-gradient(135deg, #0077B6 0%, #005577 100%);
    --gradient-accent: linear-gradient(135deg, #F4C542 0%, #e6b73a 100%);
    --gradient-highlight: linear-gradient(135deg, #8B0000 0%, #660000 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.8) 0%, rgba(0, 119, 182, 0.8) 50%, rgba(244, 197, 66, 0.8) 100%), url('photo/General/marvin-meyer-SYTO3xs06fU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.7) 0%, rgba(0, 119, 182, 0.7) 50%, rgba(244, 197, 66, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    min-height: 50px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-image {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: rgba(0, 100, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(244, 197, 66, 0.8);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 180px;
    z-index: 3;
}

.floating-card:nth-child(2) {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
    background: rgba(0, 119, 182, 0.9);
}

.floating-card:nth-child(3) {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation-delay: 2s;
    background: rgba(139, 0, 0, 0.9);
}

.floating-card:nth-child(4) {
    bottom: 50%;
    right: 10px;
    transform: translateY(50%);
    animation-delay: 3s;
    background: rgba(139, 0, 0, 0.9);
}

.floating-card:nth-child(5) {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
    background: rgba(244, 197, 66, 0.9);
    color: var(--text-dark);
    border-color: rgba(0, 100, 0, 0.8);
}

.floating-card:nth-child(6) {
    bottom: 30px;
    right: 30px;
    animation-delay: 5s;
    background: rgba(0, 100, 0, 0.9);
}

.floating-card i {
    font-size: 1.3rem;
    color: rgba(244, 197, 66, 1);
}

.floating-card:nth-child(5) i {
    color: var(--text-dark);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.project-card[data-project="hubs"]::before {
    background: var(--gradient-secondary);
}

.project-card[data-project="agriculture"]::before {
    background: var(--gradient-primary);
}

.project-card[data-project="health"]::before {
    background: var(--gradient-highlight);
}

.project-card[data-project="funding"]::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

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

.project-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-icon i {
    font-size: 1.5rem;
    color: white;
}

.project-card[data-project="hubs"] .project-icon {
    background: var(--gradient-secondary);
}

.project-card[data-project="agriculture"] .project-icon {
    background: var(--gradient-primary);
}

.project-card[data-project="health"] .project-icon {
    background: var(--gradient-highlight);
}

.project-card[data-project="funding"] .project-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.project-icon i {
    font-size: 2rem;
    color: white;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.project-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: auto;
}

.feature-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.project-link:hover {
    gap: 12px;
}

/* Enhanced Impact Section */
.impact {
    padding: 100px 0;
    background: white;
}

/* Impact Metrics */
.impact-metrics {
    margin-bottom: 80px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.metric-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    color: white;
    font-size: 1.5rem;
}

.metric-content {
    flex: 1;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.metric-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Regional Distribution */
.regional-distribution {
    margin-bottom: 80px;
    padding: 60px 0;
    background: var(--bg-light);
    border-radius: 20px;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.distribution-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.distribution-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.constituency-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.constituency-header h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.towns {
    color: var(--text-light);
    font-size: 0.9rem;
}

.projects-list {
    space-y: 10px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-item i {
    color: var(--accent-color);
    width: 16px;
    font-size: 0.9rem;
}

/* Real Experiences */
.real-experiences {
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    position: relative;
    border-left: 5px solid var(--highlight-color);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.quote-content {
    margin-bottom: 20px;
    position: relative;
    padding: 20px 30px 0;
}

.quote-icon {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quote-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px 30px;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.impact-tag {
    background: var(--highlight-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Current Partners */
.current-partners {
    margin-bottom: 80px;
    padding: 60px 0;
    background: var(--bg-light);
    border-radius: 20px;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.partner-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.partner-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo i {
    color: white;
    font-size: 1.2rem;
}

.partner-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.partner-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Future Targets */
.future-targets {
    text-align: center;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.target-card {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.target-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.target-label {
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-showcase {
        grid-template-columns: 1fr;
    }
    
    .targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-card {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .testimonial-image {
        height: 120px;
    }
    
    .regional-distribution,
    .current-partners {
        padding: 40px 0;
    }

@media (max-width: 480px) {
    .targets-grid {
        grid-template-columns: 1fr;
    }
    
    .target-number {
        font-size: 2rem;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .testimonial-image {
        height: 100px;
    }
}

/* Get Involved Section */
.get-involved {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 100, 0, 0.9), rgba(0, 119, 182, 0.9)), url('photo/General/gabriel-jimenez-jin4W1HqgL4-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.get-involved .section-header h2,
.get-involved .section-header p {
    color: white;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.involvement-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.involvement-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.involvement-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: linear-gradient(rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.95)), url('photo/General/Map-of-Bungoma-county-in-Kenya.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.8);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
        padding: 80px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 140px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .get-involved {
        background-attachment: scroll;
    }

    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .floating-card {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: 120px;
    }

    .hero-visual {
        height: 250px;
    }

    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat {
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .project-card {
        padding: 30px 20px;
    }
}