/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 通用容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #e6f3ff;
    color: #0066cc;
}

/* 主要内容区域 */
main {
    margin-top: 80px; /* 为固定导航栏留出空间 */
}

/* 页面标题样式 */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

h2 {
    font-size: 2em;
    margin: 30px 0 20px;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5em;
    margin: 20px 0 15px;
    color: #1a1a1a;
}

/* 段落样式 */
p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* 图片基础样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 页脚样式 */
footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    color: #666;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.3em;
    }
}

/* 首页特定样式优化 */
.hero {
    background: linear-gradient(135deg, #1a6fc4, #2ecc71);
    padding: 150px 0;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
    position: relative;
}

.hero p {
    font-size: 1.4em;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    position: relative;
}

.overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.overview h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.overview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.grid-item:hover::before {
    opacity: 1;
}

.grid-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item h3 {
    color: #0066cc;
    font-size: 1.6em;
    padding: 25px 25px 15px;
    margin: 0;
}

.grid-item p {
    color: #666;
    padding: 0 25px 25px;
    margin: 0;
    line-height: 1.6;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2.5em;
        padding: 0 20px;
    }

    .hero p {
        font-size: 1.2em;
        padding: 0 20px;
    }

    .overview {
        padding: 40px 0;
    }

    .overview h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .grid-item h3 {
        font-size: 1.4em;
        padding: 20px 20px 10px;
    }

    .grid-item p {
        padding: 0 20px 20px;
    }
}

/* 政策背景页面样式优化 */
.policy-hero {
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,102,204,0.7));
    z-index: 1;
}

.policy-hero h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 3.5em;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.policy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content article {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.policy-content article:last-child {
    margin-bottom: 0;
}

.policy-content h2 {
    color: #0066cc;
    font-size: 2.2em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #0066cc;
}

.policy-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 30px;
}

.policy-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
    transition: transform 0.3s ease;
}

.policy-content img:hover {
    transform: scale(1.02);
}

.goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.goal-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-10px);
}

.goal-item:hover::before {
    opacity: 1;
}

.goal-item img {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.goal-item:hover img {
    transform: rotate(360deg);
    background: #e6f3ff;
}

.goal-item h3 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.goal-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .policy-hero {
        height: 400px;
    }

    .policy-hero h1 {
        font-size: 2.5em;
    }

    .policy-content {
        padding: 40px 0;
    }

    .policy-content article {
        padding: 25px;
    }

    .policy-content h2 {
        font-size: 1.8em;
    }

    .policy-content img {
        height: 250px;
    }

    .goals {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .goal-item {
        padding: 30px 20px;
    }
}

/* 生物多样性页面样式优化 */
.biodiversity-hero {
    background: linear-gradient(135deg, #1a6fc4, #2ecc71);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.biodiversity-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-top: 60px;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0066cc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item h3 {
    color: #0066cc;
    padding: 20px 20px 10px;
    margin: 0;
}

.gallery-item p {
    padding: 0 20px 20px;
    color: #666;
    margin: 0;
}

/* 意见内容页面样式优化 */
.opinion-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.document-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    border-left: 5px solid #0066cc;
}

.document-card img {
    width: 80px;
    height: 80px;
    margin-right: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.document-info h2 {
    margin: 0 0 10px;
    color: #0066cc;
}

.document-info p {
    color: #666;
    margin: 0;
}

.key-points {
    padding: 100px 0;
    background: #f8f9fa;
}

.key-points h2 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    font-size: 2.5em;
}

.key-points h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
}

.points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.point-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,102,204,0.1);
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.point-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.15);
    border-color: rgba(0,102,204,0.2);
}

.point-card:hover::before {
    opacity: 1;
}

.point-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.point-card:hover img {
    transform: rotate(360deg);
    background: #e6f3ff;
}

.point-card h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.point-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #0066cc;
    opacity: 0.5;
}

.point-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.1em;
}

@media screen and (max-width: 768px) {
    .key-points {
        padding: 60px 0;
    }

    .key-points h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .points-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .point-card {
        padding: 30px 25px;
    }

    .point-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .point-card h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .point-card p {
        font-size: 1em;
    }
}

/* 禁渔成果页面样式优化 */
.achievement-hero {
    background: linear-gradient(135deg, #134e5e, #71b280);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.achievement-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 20px auto 0;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #0066cc;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #0066cc, #2ecc71);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 20px 50px;
    position: relative;
    width: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 4px solid #0066cc;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: #0066cc;
    box-shadow: 0 0 0 4px rgba(0,102,204,0.2);
}

.timeline-item:nth-child(odd)::before {
    right: -15px;
}

.timeline-item:nth-child(even)::before {
    left: -15px;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h3 {
    color: #0066cc;
    margin-top: 0;
    font-size: 1.8em;
}

.timeline-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content p {
    color: #444;
    margin: 0;
    font-size: 1.1em;
}

.chart-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.chart-container iframe {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::before {
        left: 15px !important;
    }

    .document-card {
        flex-direction: column;
        text-align: center;
    }

    .document-card img {
        margin: 0 0 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* 轮播图样式优化 */
.carousel {
    margin-bottom: 80px;
    background: #f8f9fa;
    padding: 0;
    margin-top: -80px; /* 抵消header的margin */
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 20%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    text-align: center;
}

.slide-content h1 {
    color: #fff;
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.5em;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.carousel-button.prev {
    left: 40px;
}

.carousel-button.next {
    right: 40px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(255,255,255,0.3);
}

@media screen and (max-width: 768px) {
    .carousel {
        margin-bottom: 40px;
    }

    .carousel-slide img {
        height: 400px;
    }

    .slide-content {
        padding: 40px 20px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 2em;
    }

    .slide-content p {
        font-size: 1.2em;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-button.prev {
        left: 20px;
    }

    .carousel-button.next {
        right: 20px;
    }
}

/* 保护成效区域样式 */
.achievements {
    background: linear-gradient(135deg, #1a6fc4, #2ecc71);
    padding: 80px 0;
    color: #fff;
    margin: 60px 0;
}

.achievements h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

/* 新闻动态区域样式 */
.news {
    padding: 80px 0;
    background: #f8f9fa;
}

.news h2 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #666;
    font-size: 0.9em;
}

.news-item h3 {
    color: #1a1a1a;
    margin: 10px 0;
    font-size: 1.4em;
}

.news-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066cc;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: scaleX(1);
}

/* 政策要点区域样式 */
.key-points {
    padding: 80px 0;
}

.key-points h2 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.key-points h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
}

.points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.point-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.point-card:hover {
    transform: translateY(-10px);
}

.point-card:hover::before {
    opacity: 1;
}

.point-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.point-card:hover img {
    transform: rotate(360deg);
}

.point-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.point-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .stat-label {
        font-size: 1em;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .points-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 