body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: white;
            padding: 150px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: bold;
            color: #2c3e50;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #e74c3c;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px;
            padding: 12px 24px;
            background-color: #f8f9fa;
            border-radius: 50px;
            text-decoration: none;
            color: #2c3e50;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .friendlink .flink:hover {
            background-color: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }
        .contact-info li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .contact-info i {
            color: #e74c3c;
            margin-right: 10px;
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: #e74c3c !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: #e74c3c !important;
        }
        .btn-primary {
            background-color: #e74c3c;
            border-color: #e74c3c;
            padding: 12px 30px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #c0392b;
            border-color: #c0392b;
            transform: scale(1.05);
        }
        .attraction-img {
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }
        .news-item {
            border-left: 4px solid #e74c3c;
            padding-left: 20px;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
