:root {
            --primary-color: #c62828;
            --secondary-color: #f5f5f5;
            --accent-color: #ff9800;
            --text-dark: #333;
            --text-light: #666;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/1920/1080?random=1');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: bold;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #a31010;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: var(--secondary-color);
            border-radius: 5px;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: #222;
            color: #ddd;
            padding: 40px 0 20px;
        }
        .social-icons a {
            color: #ddd;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--accent-color);
        }
        .content-block {
            margin-bottom: 50px;
            text-align: justify;
        }
        .content-block h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .content-block p {
            margin-bottom: 15px;
        }
        .highlight {
            background: #fff9e6;
            padding: 20px;
            border-left: 5px solid var(--accent-color);
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
