        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a472a; 
            --secondary: #d4af37; 
            --accent: #b91d1d; 
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --border-radius: 8px;
        }
        body {
            color: #333;
            line-height: 1.7;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fff9db;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            border-left: 3px solid var(--secondary);
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--accent);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav { display: none; }
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark);
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark);
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            padding: 1rem;
            border-top: 1px solid #eee;
        }
        .mobile-nav.active {
            display: flex;
        }
        .search-container {
            margin: 1.5rem 0;
            display: flex;
            justify-content: center;
        }
        .search-form {
            width: 100%;
            max-width: 600px;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #0e351f;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        main {
            padding: 2rem 0 4rem;
        }
        article {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.7rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border-left: 5px solid var(--secondary);
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .info-box {
            background-color: #e8f4fd;
            border-left: 5px solid #2980b9;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .warning-box {
            background-color: #fdf2e8;
            border-left: 5px solid #e67e22;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            transition: var(--transition);
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .strategy-card i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .interaction-section {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #495057;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(26, 71, 42, 0.25);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2.5rem;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #0e351f;
            transform: scale(1.03);
        }
        .web-links {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #34495e;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #3d566e;
            transform: translateX(5px);
        }
        .web-link a {
            color: #bdc3c7;
            display: block;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--dark);
            color: #bdc3c7;
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.5rem; }
            .header-top { padding: 0.8rem 0; }
            .logo { font-size: 1.8rem; }
            .strategy-grid { grid-template-columns: 1fr; }
        }
