        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6600;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffcc00;
        }
        .search-bar {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-bar form {
            display: flex;
        }
        .search-bar input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-bar button {
            background: #ffcc00;
            color: #1e3c72;
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #ff9900;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        nav {
            background-color: #2a5298;
            margin-top: 10px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            padding: 15px 20px;
            display: block;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background-color: #ff6600;
            color: white;
            border-radius: 5px;
        }
        .breadcrumb {
            padding: 10px 20px;
            background-color: #e9ecef;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb a {
            color: #0066cc;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        .meta-info {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin: 0 5px;
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 30px 0 15px;
            border-left: 5px solid #ff6600;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 15px;
            border-left: 4px solid #ffcc00;
            margin: 20px 0;
            font-weight: bold;
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .caption {
            font-style: italic;
            color: #777;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stat-card h4 {
            color: #1e3c72;
            margin-bottom: 10px;
        }
        .interview {
            background-color: #f1f8e9;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .interview p:before {
            content: "“";
            font-size: 2rem;
            color: #ff6600;
            vertical-align: top;
        }
        .link-inline {
            font-weight: bold;
            color: #ff6600;
            text-decoration: underline;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .user-interaction {
            margin-top: 50px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #ddd;
        }
        .user-interaction h2 {
            text-align: center;
            border: none;
            padding-left: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #0066cc;
            outline: none;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .rating-stars i:hover {
            color: #ff9900;
        }
        button[type="submit"] {
            background: linear-gradient(to right, #0066cc, #004d99);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s;
            display: block;
            margin: 0 auto;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #ff6600, #cc5500);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 20px;
            background-color: #e9ecef;
            border-radius: 10px;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: #1e3c72;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ff6600;
            text-decoration: underline;
        }
        footer {
            background-color: #1e3c72;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #ffcc00;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .logo {
                text-align: center;
                margin-bottom: 15px;
            }
            .search-bar {
                max-width: 100%;
                margin: 15px 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2a5298;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                padding: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .long-tail-links {
                grid-template-columns: 1fr;
            }
            .user-interaction {
                padding: 20px;
            }
        }
