
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8faf7;
}


#wrapper {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    border-radius: 8px;
}


#header {
    text-align: center;
    padding: 25px 0;
    border-bottom: 2px solid #e0f0d8;
    margin-bottom: 20px;
}

#header h1 {
    color: #2e7d32;
    font-size: 2.2em;
    letter-spacing: 1px;
}


#nav-content {
    margin-bottom: 30px;
}

#navigation {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 2px solid #e0f0d8;
    flex-wrap: wrap;
}

#navigation a {
    text-decoration: none;
    color: #333;
    padding: 8px 18px;
    border-radius: 25px;
    background-color: #e8f5e9;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #c8e6c9;
}

#navigation a.current, #navigation a:hover {
    background-color: #66bb6a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 187, 106, 0.2);
}


#content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
}

#main-content {
    flex: 2;
    min-width: 60%;
    padding: 15px;
}

#main-content h4 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 2px solid #e0f0d8;
    padding-bottom: 8px;
}

#main-content h5 {
    color: #388e3c;
    margin: 20px 0 10px;
    font-size: 1.2em;
}

#main-content h6 {
    color: #43a047;
    margin: 15px 0 8px;
    font-size: 1.1em;
}

#main-content p {
    margin-bottom: 15px;
    color: #424242;
}

#main-content ul {
    margin: 15px 0 15px 25px;
    color: #424242;
}

#main-content ul li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

#main-content ul li:before {
    content: "•";
    color: #66bb6a;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}


#secondary-content {
    flex: 1;
    min-width: 250px;
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#secondary-content blockquote {
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}



#footer {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #e0f0d8;
    color: #616161;
    font-size: 0.95em;
    margin-top: 30px;
}

#footer p {
    margin: 8px 0;
    line-height: 1.6;
}


@media (max-width: 768px) {
    #navigation {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    #navigation a {
        width: 80%;
        text-align: center;
    }
    
    #main-content, #secondary-content {
        flex: 100%;
        min-width: 100%;
    }
    
    #secondary-content {
        margin-top: 20px;
    }
    
    #wrapper {
        width: 95%;
        padding: 15px;
    }
}

.team-member {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin: 25px 0;
    padding: 20px;
    background-color: #f5fbf5;
    border-radius: 8px;
    border: 1px solid #e0f0d8;
}

.team-member p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.team-photo {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-photo img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0f0d8;
    object-fit: cover;
}
/* 新增：联系表单样式 */
#main-content form {
    margin-top: 20px;
    width: 80%;
}

#main-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

#main-content td {
    padding: 8px 5px;
    vertical-align: top;
}

#main-content input[type="text"],
#main-content input[type="email"],
#main-content input[type="tel"],
#main-content textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#main-content textarea {
    resize: vertical;
}

#main-content button {
    background-color: #D86836;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#main-content button:hover {
    background-color: #c05a2c;
}


#main-content h3 {
    color: #60b57e;       
    font-size: 1.5em;    
    margin: 1em 0 0.5em; 
    font-weight: normal; 
}

#main-content h4 {
    color:#60b57e;      
    font-size: 1.2em;    
    margin: 1.8em 0 0.8em; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 5px; 
}


#main-content h5 {
    color: #60b57e;       
    font-size: 1.1em;     
    margin: 1.5em 0 0.6em;
    font-style: italic;  
}


#main-content p {
    margin-bottom: 1.2em; 
    line-height: 1.6;     
    color: #555;        
}


#main-content ul {
    margin: 1em 0 1.5em 1.8em; 
    padding: 0;
    list-style-type: square;  
}

#main-content li {
    margin-bottom: 0.6em;    
    line-height: 1.5;
}


#donate-options {
    padding: 1.5em;         
    background-color: #f8f8f8; 
    border: 1px solid #e0e0e0; 
    border-radius: 8px;        
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
}


.donate-button {
    margin: 1.5em 0;      
    text-align: center;     
}


.donate-button form {
    display: inline-block;
    margin: 0;
    padding: 0;
}


#main-content em {
    color: #777;         
    font-size: 0.95em;    
    display: block;         
    margin-top: 1.5em;
}


#main-content a {
    color:#60b57e;        
    text-decoration: none;  
    transition: color 0.2s;  
}

#main-content a:hover {
    color:#60b57e;          
    text-decoration: underline; 
}


@media (max-width: 768px) {
    .donate-button img {
        width: 90%;
        height: auto;
    }
    #donate-options {
        padding: 1em;
    }
}