:root {
    --primary-green: #228B22;
    --primary-green-light: #32CD32;
    --primary-green-dark: #006400;
    --secondary-green: #90EE90;
    --accent-green: #00FF00;.footer-section {

    --bg-green-light: #F0FFF0;
    --bg-green-gradient: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #1a5c1a 0%, #228B22 50%, #32CD32 100%);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.backdrop-blur-sm {
    backdrop-filter: blur(8px);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-20 {
    width: 5rem;
}

.h-1 {
    height: 0.25rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.slideshow {
    height: 500px;
    object-fit: cover;
}

.navbar {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.navbar-brand img {
    height: 75px;
}

.navbar-nav .nav-link {
    color: #444 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #90EE90 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #90EE90;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .active .nav-link {
    color: #298629 !important;
}

.jumbotron {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(50, 205, 50, 0.8) 100%) !important;
    border-radius: 0 !important;
    padding: 80px 0 !important;
    margin-bottom: 0 !important;
}

.text-info {
    color: #228B22 !important;
}

.text-success {
    color: #228B22 !important;
}

.btn-info {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
    background: linear-gradient(135deg, #006400 0%, #228B22 100%);
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 139, 34, 0.2);
}

.card-img-top {
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-title a {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #228B22;
}

.badge {
    border-radius: 20px;
    padding: 4px 12px;
}

.badge-success {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.badge-warning {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.bg-light {
    background-color: #F0FFF0 !important;
}

.footer {
    background: linear-gradient(135deg, #1a5c1a 0%, #228B22 100%);
    color: #ffffff;
    border-top: none;
}

.footer a {
    color: #90EE90;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
}

.copyright {
    background: rgba(0, 0, 0, 0.1);
}

.Purpose {
    background: linear-gradient(135deg, #F0FFF0 0%, #E8F5E9 100%);
    padding: 60px 0;
}

.Purpose .pur h3 {
    color: #228B22;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.Purpose .pur span {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #228B22 0%, #32CD32 100%);
    margin: 0 auto 20px;
}

.Purpose .pur p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.purlist ul {
    margin-top: 30px;
}

.purlist li {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.purlist li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.15);
}

.purlist .pic {
    margin-bottom: 15px;
}

.purlist .pic img {
    width: 60px;
    height: 60px;
}

.purlist .purltxt span {
    display: block;
    color: #228B22;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.purlist .purltxt p {
    color: #666;
    font-size: 13px;
}

.online dl {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%) !important;
}

.online dl:hover {
    background: linear-gradient(135deg, #006400 0%, #228B22 100%) !important;
}

.scroll-top {
    background: linear-gradient(135deg, #666 0%, #444 100%) !important;
}

.container-fluid.bg-info {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%) !important;
}

.swiper-container {
    position: relative;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ffffff !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #298629 !important;
}

.page-num-current {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%) !important;
    border-color: #228B22 !important;
}

.page-link:hover {
    color: #228B22;
}

.form-control:focus {
    border-color: #228B22;
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.25);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}

.wow.zoomIn {
    animation-name: zoomIn;
}

.wow.slideInUp {
    animation-name: slideInUp;
}

.text-green-light {
    color: #90EE90;
}

.bg-green-dark {
    background-color: #0d4d0d;
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.footer-section { 
}

.footer-top {
    padding: 1.5rem 0;
}

.footer-bottom {
    padding: 1rem 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    padding-left: 5px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #90EE90;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-mobile-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: #ffffff;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-mobile-link i {
    font-size: 20px;
    margin-bottom: 4px;
}

.footer-mobile-link:hover {
    color: #90EE90;
    text-decoration: none;
}

.online-service {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
}

.service-item {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
}

.service-top {
    background: linear-gradient(135deg, #555 0%, #333 100%) !important;
}

.service-wechat {
    padding: 0;
}

.wechat-qrcode {
    position: absolute;
    right: 60px;
    bottom: 0;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.service-wechat:hover .wechat-qrcode {
    opacity: 1;
    visibility: visible;
}

.wechat-qrcode img {
    width: 120px;
    height: 120px;
    display: block;
    margin-bottom: 10px;
}

.wechat-qrcode span {
    display: block;
    text-align: center;
    color: #666;
    font-size: 12px;
}

@media (max-width: 768px) {
    .slideshow {
        height: 300px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .Purpose .pur h3 {
        font-size: 22px;
    }
}