/* 内页通用样式 */
.page-hero {
    background: var(--gradient-primary);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 1s ease forwards;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    animation: fadeIn 1s 0.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 面包屑导航 */
.breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    position: relative;
    padding-right: 20px;
    margin-right: 15px;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

.breadcrumb li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 内容区域 */
.content-section {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.main-content h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.main-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* 食品银行页面特定样式 */
.alert-box {
    background-color: rgba(228, 112, 37, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.alert-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.food-banks-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.food-bank-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.food-bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.food-bank-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.food-bank-details {
    margin-bottom: 20px;
}

.detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.detail .icon {
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.food-bank-notes {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.food-bank-card .btn {
    width: 100%;
    margin-top: 5px;
}

.map-container {
    margin: 30px 0;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-container h3 {
    margin-top: 0;
}

.interactive-map {
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.interactive-map img {
    display: block;
    width: 100%;
    height: auto;
}

.interactive-map p {
    padding: 10px;
    margin: 0;
    background-color: var(--light-bg);
    font-size: 0.9rem;
    text-align: center;
}

.check-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.action-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

.action-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.action-box ul {
    list-style: none;
    padding: 0;
}

.action-box li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.action-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 侧边栏样式 */
.sidebar {
    align-self: start;
}

.sidebar-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.sidebar-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.sidebar-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-links a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.sidebar-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.download-links {
    list-style: none;
    padding: 0;
}

.download-links li {
    margin-bottom: 15px;
}

.download-links li:last-child {
    margin-bottom: 0;
}

.download-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--light-bg);
    border-radius: 4px;
    color: var(--text-color);
    transition: var(--transition);
}

.download-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.download-link span {
    margin-left: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.download-link:hover span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial blockquote {
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: 0;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-style: normal;
    text-align: right;
    color: var(--primary-color);
}

.help-box {
    background: var(--gradient-primary);
    color: var(--light-text);
}

.help-box h3 {
    color: var(--light-text);
}

.help-box h3::after {
    background: rgba(255, 255, 255, 0.3);
}

.help-box p {
    margin-bottom: 20px;
}

.phone-link, .email-link {
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
}

.phone-link:hover, .email-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}

.help-box .btn-outline {
    border-color: var(--light-text);
    color: var(--light-text);
    width: 100%;
    margin-top: 10px;
}

.help-box .btn-outline:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
}

/* 行动号召部分 */
.call-to-action {
    padding: 60px 0;
    background: var(--gradient-secondary);
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.call-to-action:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.1;
}

.call-to-action h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.call-to-action p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    background: #fff;
    color: var(--secondary-color);
}

.cta-buttons .btn:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.05);
}

/* 联系我们页面样式 */
.contact-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 122, 87, 0.1);
}

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

.contact-options {
    margin-top: 30px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-option-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--light-text);
    font-size: 1.5rem;
}

.contact-option-content h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-option-content p {
    margin: 0;
    line-height: 1.5;
}

.contact-option-content a {
    display: block;
    margin-top: 8px;
    font-weight: 500;
}

.contact-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid var(--border-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .food-banks-list {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-top: 30px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .call-to-action h2 {
        font-size: 1.8rem;
    }
    
    .contact-options {
        margin-top: 20px;
    }
}

/* 联系我们页面额外样式 */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--light-bg);
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
    margin-top: 3px;
}

.required {
    color: var(--secondary-color);
}

/* 新闻页面特定样式 */
.news-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.news-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.news-excerpt {
    margin-bottom: 20px;
}

.news-excerpt p {
    margin-bottom: 0;
}

.news-item .btn {
    margin-top: 10px;
}

/* 分页样式 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination .current-page {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 4px;
    margin: 0 5px;
    font-weight: 500;
}

.pagination .page-link {
    padding: 8px 15px;
    border-radius: 4px;
    margin: 0 5px;
    color: var(--text-color);
    background-color: var(--light-bg);
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.pagination .page-link.next {
    margin-left: 15px;
}

/* 事件列表样式 */
.event-list {
    margin: 20px 0;
}

.event {
    display: flex;
    margin-bottom: 20px;
    background-color: var(--light-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

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

.event-date {
    background: var(--gradient-primary);
    color: var(--light-text);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    margin-top: 5px;
}

.event-details {
    padding: 15px;
    flex-grow: 1;
}

.event-details h4 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.event-details p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

/* 服务卡片样式 */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .btn {
    width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: auto;
    }
}

/* 紧急食品页面样式 */
.emergency-hero {
    background: var(--gradient-secondary);
}

.emergency-box {
    background-color: rgba(228, 112, 37, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.emergency-box h2 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.emergency-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.emergency-number {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-decoration: none;
}

.number:hover {
    text-decoration: underline;
}

.hours {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
}

.help-options {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.help-option {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.help-option h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.option-details {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.option-details p {
    margin-bottom: 8px;
}

.option-details p:last-child {
    margin-bottom: 0;
}

.small-text {
    font-size: 0.85rem;
    margin-top: -10px;
    margin-bottom: 15px;
    color: var(--light-text);
    opacity: 0.8;
}

.mini-map {
    height: 200px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.map-box .btn {
    width: 100%;
    margin-top: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .emergency-numbers {
        grid-template-columns: 1fr;
    }
}

/* 健康假期页面样式 */
.kids-hero {
    background: linear-gradient(135deg, #3b7a57 0%, #50a070 100%);
}

.info-box {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

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

.center-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.center-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3rem;
}

.center-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.center-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.center-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.center-list p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.steps-container {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 25px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 5px;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.step-content p {
    margin-bottom: 10px;
}

.step-content .btn {
    margin-top: 10px;
}

.date-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.date-list li {
    margin-bottom: 12px;
}

.date-list li:last-child {
    margin-bottom: 0;
}

.date-item {
    background-color: var(--light-bg);
    border-radius: 4px;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
}

.date-period {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.date-range {
    font-size: 0.9rem;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
}

/* 解决食品不安全宪章页面样式 */
.charter-hero {
    background: linear-gradient(135deg, #3b7a57 0%, #4d8f6a 100%);
}

.highlight-section {
    background: rgba(59, 122, 87, 0.05);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.highlight-content h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.vision-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
}

.charter-principles {
    margin: 40px 0;
}

.charter-principles h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

.principle-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.principle-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.principle-card h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.principle-card p {
    margin: 0;
    font-size: 0.95rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-description {
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.achievement-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.achievement-card h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
}

.achievement-card p {
    margin: 0;
    font-size: 0.95rem;
}

.involvement-options {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.involvement-option {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.involvement-option h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.involvement-option p {
    margin-bottom: 15px;
}

.involvement-option .btn {
    margin-top: 10px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.bullet-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .principles-grid,
    .stats-container,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-quote {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* 食品投放页面样式 */
.drop-in-hero {
    background: linear-gradient(135deg, #50a070 0%, #3b7a57 100%);
}

.drop-ins-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.drop-in-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.drop-in-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.drop-in-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.drop-in-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drop-in-details .detail {
    display: flex;
    align-items: flex-start;
}

.drop-in-details .icon {
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
}

.opening-times {
    margin-top: 15px;
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
}

.opening-times h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.opening-times ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-times li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.opening-times li:last-child {
    margin-bottom: 0;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--text-color);
}

.closed {
    color: #999;
    font-style: italic;
}

.additional-services {
    margin-top: 15px;
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
}

.additional-services h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.additional-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-services li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.additional-services li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.additional-services li:last-child {
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .drop-in-details .detail {
        flex-direction: column;
    }
    
    .drop-in-details .icon {
        margin-bottom: 5px;
    }
    
    .opening-times li {
        flex-direction: column;
    }
    
    .day {
        margin-bottom: 5px;
    }
}

/* 社区食品储藏室页面样式 */
.pantry-hero {
    background: linear-gradient(135deg, #3b7a57 0%, #5db484 100%);
}

.pantries-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.pantry-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.pantry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pantry-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pantry-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pantry-details .detail {
    display: flex;
    align-items: flex-start;
}

.pantry-details .icon {
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
}

.pantry-comparison {
    margin: 30px 0;
}

.comparison-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: flex;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    display: flex;
    align-items: center;
}

.comparison-cell:first-child {
    background-color: var(--light-bg);
    font-weight: 600;
    flex-basis: 30%;
    flex-grow: 0;
    border-right: 1px solid var(--border-color);
}

.comparison-header .comparison-cell:first-child {
    background-color: #2d634a;
}

.comparison-header .comparison-cell {
    padding: 12px 15px;
}

.comparison-row:nth-child(even) {
    background-color: rgba(59, 122, 87, 0.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-cell {
        padding: 10px;
    }
    
    .pantry-details .detail {
        flex-direction: column;
    }
    
    .pantry-details .icon {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .comparison-header,
    .comparison-row {
        flex-direction: column;
    }
    
    .comparison-cell {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .comparison-cell:last-child {
        border-bottom: none;
    }
    
    .comparison-header .comparison-cell:first-child {
        display: none;
    }
    
    .comparison-row .comparison-cell:first-child {
        background-color: var(--primary-color);
        color: var(--light-text);
        text-align: center;
    }
}

/* 案例研究与工具包页面样式 */
.case-studies-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/case-studies-hero.jpg');
    background-position: center;
    background-size: cover;
}

.case-studies-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0 3rem;
}

.case-study-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.case-study-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.case-study-item:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.case-study-highlights {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.highlight .key {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.highlight .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.toolkits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.toolkit-card {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.toolkit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.toolkit-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.toolkit-features {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.toolkit-features li {
    margin-bottom: 0.5rem;
}

.search-box .search-form {
    display: flex;
    margin-top: 1rem;
}

.search-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.search-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 0.8rem;
}

/* 媒体查询 - 平板和桌面设备 */
@media (min-width: 768px) {
    .case-study-item {
        flex-direction: row;
    }
    
    .case-study-image {
        width: 40%;
        height: auto;
    }
    
    .case-study-content {
        width: 60%;
    }
    
    .toolkits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .toolkits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .case-study-item, 
    .toolkit-card {
        background-color: var(--dark-bg-secondary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .highlight .key {
        color: #aaa;
    }
    
    .search-form input {
        background-color: var(--dark-bg-secondary);
        border-color: #555;
        color: #fff;
    }
}

/* 食品捐赠页面样式 */
.donation-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/donation-hero.jpg');
    background-position: center;
    background-size: cover;
}

.donation-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.donation-option {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.donation-option:hover {
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.donation-option h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.needed-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}

.needed-category {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.needed-category h3 {
    margin-top: 0;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

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

.needed-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.needed-list li:last-child {
    border-bottom: none;
}

.donation-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}

.donation-method {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.donation-method h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.bank-details {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.bank-details p {
    margin: 0.5rem 0;
}

.corporate-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}

.corporate-option {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.corporate-option h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.donation-overview {
    background-color: var(--primary-color);
    color: #fff;
}

.donation-overview h3 {
    color: #fff;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.impact-stat {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.urgent-needs li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 1.5rem;
}

.urgent-needs li:before {
    content: "!";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 1rem;
    font-size: 0.7rem;
    font-weight: bold;
}

/* 媒体查询 - 平板和桌面设备 */
@media (min-width: 768px) {
    .donation-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .needed-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .corporate-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .donation-options {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .needed-items {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .donation-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .corporate-options {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .donation-option,
    .needed-category,
    .donation-method,
    .corporate-option {
        background-color: var(--dark-bg-secondary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .bank-details {
        background-color: var(--dark-bg-primary);
    }
    
    .needed-category h3 {
        border-bottom-color: #444;
    }
    
    .needed-list li,
    .urgent-needs li {
        border-bottom-color: #444;
    }
}

/* 捐赠食品和物品页面样式 */
.donate-food-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/donate-food-hero.jpg');
    background-position: center;
    background-size: cover;
}

.donation-categories {
    margin: 2rem 0;
}

.donation-category {
    margin-bottom: 2.5rem;
}

.donation-category h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.item-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.donation-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.donation-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.donation-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.donation-item li {
    margin-bottom: 0.5rem;
}

.priority-items {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.priority-items h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.priority-list {
    padding-left: 1.5rem;
}

.priority-list li {
    margin-bottom: 0.8rem;
}

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

.warning-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.warning-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

.donation-locations {
    margin: 2rem 0;
}

.location-type {
    margin-bottom: 2rem;
}

.location-type h3 {
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.location-list {
    padding-left: 1.5rem;
}

.location-list li {
    margin-bottom: 0.8rem;
}

.organizing-steps {
    margin: 2rem 0;
}

.donation-resources {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.donation-resources h3 {
    color: var(--primary-color);
    margin-top: 0;
}

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

.resources-list li {
    margin-bottom: 0.8rem;
}

.resources-list .download-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.resources-list .download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-link span {
    font-size: 0.8rem;
    color: #666;
}

/* 媒体查询 - 平板和桌面设备 */
@media (min-width: 768px) {
    .item-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-figure {
        display: inline-block;
        width: 48%;
        margin: 1%;
        vertical-align: top;
    }
}

@media (min-width: 992px) {
    .item-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .donation-locations {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .location-type {
        margin-bottom: 0;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .donation-item {
        background-color: var(--dark-bg-secondary);
    }
    
    .priority-items {
        background-color: var(--dark-bg-primary);
    }
    
    .donation-resources {
        background-color: var(--dark-bg-primary);
    }
    
    .resources-list .download-link {
        background-color: var(--dark-bg-secondary);
    }
    
    .location-type h3 {
        border-bottom-color: #444;
    }
}

/* FareShare和Rethink Food页面样式 */
.fareshare-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/fareshare-hero.jpg');
    background-position: center;
    background-size: cover;
}

.org-profiles {
    margin: 2rem 0;
}

.org-profile {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.org-logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.org-logo img {
    width: 100%;
    height: auto;
}

.org-content h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.org-stats {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0 0;
    gap: 1rem;
}

.stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: #666;
}

.partnership-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.partnership-option {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.partnership-option h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.process-steps {
    margin: 2rem 0 3rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
}

.process-steps h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.numbered-steps {
    list-style-type: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin-top: 1.5rem;
}

.numbered-steps li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    counter-increment: step-counter;
}

.numbered-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.numbered-steps h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.programs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.program {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.program h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.case-study-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.case-study-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.benefit h3 {
    color: var(--primary-color);
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.benefit ul {
    margin: 0;
    padding-left: 1.5rem;
}

.benefit li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background-color: #f9f9f9;
    text-align: center;
    padding: 1.5rem;
}

.highlight-box h3 {
    color: var(--primary-color);
}

.video-box {
    text-align: center;
}

.video-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.video-play-btn:hover {
    background-color: var(--primary-color);
}

.play-icon {
    font-size: 1.5rem;
}

.impact-chart {
    margin: 1rem 0;
}

.impact-chart img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.chart-caption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* 媒体查询 - 平板和桌面设备 */
@media (min-width: 768px) {
    .org-profile {
        flex-direction: row;
        align-items: center;
    }
    
    .org-logo {
        width: 25%;
        margin: 0 2rem 0 0;
    }
    
    .org-content {
        width: 75%;
    }
    
    .partnership-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .partnership-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .org-profile,
    .partnership-option,
    .program,
    .benefit {
        background-color: var(--dark-bg-secondary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .stat {
        background-color: var(--dark-bg-primary);
    }
    
    .stat-desc {
        color: #aaa;
    }
    
    .process-steps,
    .case-study-box,
    .highlight-box {
        background-color: var(--dark-bg-primary);
    }
    
    .benefit h3 {
        border-bottom-color: #444;
    }
    
    .chart-caption {
        color: #aaa;
    }
}

/* 建议与支持页面样式 */
.advice-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/advice-hero.jpg');
    background-position: center;
    background-size: cover;
}

.support-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.service-features {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-card .btn {
    align-self: flex-start;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.emergency-contact {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.emergency-contact h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.contact-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #eee;
}

.phone-link, .email-link {
    display: block;
    margin: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:before, .email-link:before {
    position: absolute;
    left: 0;
}

.phone-link:before {
    content: "📞";
}

.email-link:before {
    content: "✉️";
}

.website-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.website-link:hover {
    text-decoration: underline;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.advice-centers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advice-center {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advice-center h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.center-details {
    margin-top: 1rem;
}

.online-resources {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.help-map {
    text-align: center;
}

.download-box {
    background-color: #f9f9f9;
}

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

.download-links li {
    margin-bottom: 0.8rem;
}

.download-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background-color: #fff;
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-link span {
    font-size: 0.8rem;
    color: #666;
}

/* 媒体查询 - 平板和桌面设备 */
@media (min-width: 768px) {
    .support-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-contacts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advice-centers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .online-resources {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .support-services {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .emergency-contacts {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advice-centers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .online-resources {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .service-card,
    .emergency-contact,
    .advice-center,
    .resource {
        background-color: var(--dark-bg-secondary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .contact-details {
        border-top-color: #444;
    }
    
    .download-box {
        background-color: var(--dark-bg-primary);
    }
    
    .download-link {
        background-color: var(--dark-bg-secondary);
    }
    
    .download-link span {
        color: #aaa;
    }
    
    .website-link,
    .phone-link,
    .email-link {
        color: var(--link-color-dark);
    }
}

/* 修复捐赠食品和物品页面的impact-box样式 */
.impact-box {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

.impact-box h3 {
    color: #fff;
    margin-top: 0;
}

.impact-figure {
    margin: 1.5rem 0;
}

.impact-figure p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* 确保深色模式支持所有组件 */
@media (prefers-color-scheme: dark) {
    .impact-box {
        background-color: var(--primary-color-dark, var(--primary-color));
    }
} 