container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
}

.left-column {
    flex: 1;
}

.right-column {
    width: 350px;
}

/* Header Styles */
.page-header {
    color: #fff;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 16px;
    line-height: 1.8;
}

/* Section Styles */
.section {
    margin-bottom: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-transform: uppercase;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
}

/* List Styles */
.opportunities-list {
    list-style-type: none;
    margin: 20px 0;
}

.opportunities-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.opportunities-list li:before {
    content: "-";
    margin-right: 10px;
    color: #3498db;
    font-weight: bold;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

/* Image Styles */
.volunteer-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Form Styles */
.subscribe-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Donation Box */
.donation-box {
    background-color: #3498db;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.donation-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.donation-box p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 14px;
    color: #7f8c8d;
}


.food-kitchen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #333333;
}

.food-kitchen-title {
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.food-kitchen-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.notice-section {
    margin-bottom: 25px;
}

.notice-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.notice-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.notice-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #000000;
}

.download-link {
    color: #0066cc;
    text-decoration: underline;
}

.contact-info {
    font-size: 16px;
    line-height: 1.6;
}

.email-link {
    color: #0066cc;
    text-decoration: underline;
}