body, p, li, .body-text, .blog-intro, .post-content, .subscription-box p, .footer-contact ul li p {
    font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}

h1, h2, h3, h4, h5, h6, .blog-header h1, .post-content h3, .footer-ventures h3, .footer-contact h3, .footer-contact ul li h4 {
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

:root {
    --primary: #0056b3;
    --primary-dark: #004a8f;
    --primary-light: #e3f2fd;
    --text-dark: #333333;
    --text-light: #666666;
    --accent: #90CAF9;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: rgba(0,0,0,0.08);
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, button, input, textarea, .btn-large {
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.park-section {
    padding: 70px 0;
    background-color: #ffffff;
}
.park-section.light-bg {
    background-color: #f7f9fc;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}
.section-title h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    border-radius: 2px;
}
.section-title p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-box {
    flex: 0 0 24%;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-img {
    height: 200px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}


p {
    margin-bottom: 25px;
}

p + p {
    margin-top: 25px;
}

.two-column-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.column-text {
    flex: 1;
    min-width: 300px;
}

.column-image {
    flex: 1;
    min-width: 300px;
}

.column-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 220px;
    margin-bottom: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.cta-section {
    text-align: center;
    padding: 40px 0 60px 0;
    background: #f5f7fa;
    color: #2d3e50;
    margin-top: -20px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.cta-section p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-dark);
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #0056b3;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    border: 2px solid #0056b3;
}

.cta-button:hover {
    background: #fff;
    color: #0056b3;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .stat-box {
        flex: 0 0 48%;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }
    
    .column-image {
        order: 1;
    }
    
    .column-text {
        order: 2;
    }
}

@media (max-width: 576px) {
    .stat-box {
        flex: 0 0 100%;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}