
        /* Food Bank Profile Hero */
        .foodbank-hero {
            background: linear-gradient(135deg, var(--bg-light) 0%, #dbeafe 50%, #e0f2fe 100%);
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .foodbank-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="hero-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .foodbank-logo {
            width: 150px;
            height: 150px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: var(--shadow-lg);
            padding: 1rem;
        }

        .foodbank-logo img {
            max-width: 120px;
            max-height: 120px;
            object-fit: contain;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .hero-location {
            font-size: 1.25rem;
            opacity: 0.9;
            text-align: center;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-location i {
            margin-right: 0.5rem;
        }

        .hero-actions {
            text-align: center;
        }

        .btn-hero {
            background: var(--secondary-color);
            color: #fff ;
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            text-decoration: none;
            margin: 0 0.5rem;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: #fff;
            background: var(--primary-dark);
        }

        .btn-hero i {
            margin-right: 0.5rem;
        }

        .btn-hero-outline {
            background: var(--primary-dark);
            color: #fff;
        }

        .btn-hero-outline:hover {
            background: var(--secondary-color);
            color: #fff;
        }


        /* Main Content Sections */
        .content-section {
            padding: 3rem 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .section-title i {
            color: var(--primary-color);
            margin-right: 0.75rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        /* Location & Hours */
        .location-hours-section {
            background: var(--bg-light);
        }

        .location-card, .hours-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            height: 100%;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
        }

        .card-title i {
            color: var(--primary-color);
            margin-right: 0.75rem;
        }

        .location-info {
            margin-bottom: 2rem;
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .location-item i {
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        /* Map Section */
        .map-container {
            background: var(--border-light);
            height: 400px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
        }

        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        /* Related Food Banks */
        .related-section {
            background: var(--bg-light);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .related-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .related-image {
            height: 200px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .related-image img {
            max-width: 180px;
            max-height: 180px;
            object-fit: contain;
        }

        .related-content {
            padding: 1.5rem;
        }

        .related-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .related-title a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .related-title a:hover {
            color: var(--primary-color);
        }

        .related-location {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .related-location i {
            color: var(--primary-color);
            margin-right: 0.5rem;
        }

        .related-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn-related {
            flex: 1;
            text-align: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: calc(var(--border-radius) * 0.75);
            transition: var(--transition);
        }

        .btn-related-primary {
            background: var(--secondary-color);
            color: white;
            text-decoration: none;
            border: none;
        }

        .btn-related-primary:hover {
            background: var(--primary-dark);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .foodbank-hero {
                padding: 2rem 0;
            }
            
            .hero-title {
                font-size: 1.75rem;
            }
            
            .hero-location {
                font-size: 1.1rem;
                flex-direction: column;
                text-align: center;
            }
            
            .hero-actions {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .btn-hero {
                margin: 0;
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .content-section {
                padding: 2rem 0;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .foodbank-logo {
                width: 100px;
                height: 100px;
            }
            
            .location-card,
            .hours-card {
                padding: 1.5rem;
            }
            
            .get-help-cta {
                padding: 2rem 1rem;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
        }

        .location-item a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .location-item a:hover {
            color: var(--primary-color);
        }
        /* Update the map-container style */
.map-container {
    background: var(--border-light);
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

#map {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.map-container {
    background: var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-actions {
    margin-top: 1rem;
}

.map-actions .btn {
    margin: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
    
    .map-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .map-actions .btn {
        width: 100%;
        max-width: 250px;
        margin: 0;
    }
}
    