


.main-title {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-left: 32%;
}
.intro {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.8s ease-out;
}
.intro p {
    font-size: 16px;
    margin-bottom: 15px;
}
.values {
    margin-bottom: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.8s ease-out;
}
.values ul {
    list-style-type: none;
    padding: 0;
}
.values li {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.values li:hover {
    background-color: #e0e0e0;
    transform: translateX(5px);
}
.projects {
    margin-bottom: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.8s ease-out;
}
.project-title {
    font-size: 18px;
    color: #2e7d32;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.project-desc {
    font-size: 14px;
    margin-bottom: 15px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}
.gallery-item {
    width: 32%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}
.btn {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    margin: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.btn:hover {
    background-color: #d15501;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}
.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b5998;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:nth-child(2) {
    background-color: #e4405f;
}
.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}
.social-link:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-item {
        width: 100%;
    }
    .buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* 动画应用类 */
.animated {
    animation: float 3s ease-in-out infinite;
}
