.food-kitchen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.header-image {
    margin-bottom: 30px;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.important-notice {
    background-color: #ffeeee;
    border-left: 4px solid #ff0000;
    padding: 15px;
    margin-bottom: 30px;
}

.important-notice h3 {
    color: #ff0000;
    margin-bottom: 10px;
}

.volunteer-section, .project-info, .locations-section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h3 {
    font-size: 18px;
    color: #2c3e50;
    margin: 15px 0 10px;
}

.requirements ul {
    list-style-type: none;
    padding-left: 0;
}

.requirements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.locations-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.location-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.queue-note {
    color: #e74c3c;
    font-weight: bold;
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .locations-section {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 20px;
    }
}