        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1.2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
            background: linear-gradient(135deg, #1b5e20, #388e3c);
        }
        .section-padding {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #1a237e;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 10px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #303f9f;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #5c6bc0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .bold {
            font-weight: 700;
            color: #1a237e;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #4caf50;
            margin-right: 10px;
            font-size: 2.2rem;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #4caf50;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #4caf50;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: calc(100vh - 70px);
            background: linear-gradient(135deg, #1a237e, #283593);
            transition: right 0.4s ease;
            z-index: 999;
            overflow-y: auto;
            padding: 30px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            padding: 15px 0;
            font-size: 1.2rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile a:hover {
            color: #4caf50;
            padding-left: 10px;
        }
        .overlay {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            display: none;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 15px 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a:hover {
            color: #1a237e;
            text-decoration: underline;
        }
        main {
            background-color: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
            margin: 30px auto;
            padding: 40px;
        }
        @media (max-width: 768px) {
            main {
                padding: 25px;
                margin: 15px auto;
            }
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px dashed #e0e0e0;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            color: #777;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
            color: #4caf50;
        }
        .featured-image {
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 15px;
            background-color: #f5f5f5;
            color: #666;
        }
        .content-section {
            margin-bottom: 50px;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .strategy-card {
            background: #f1f8e9;
            border-left: 5px solid #8bc34a;
            padding: 25px;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .strategy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .strategy-card h4 {
            color: #33691e;
            display: flex;
            align-items: center;
        }
        .strategy-card h4 i {
            margin-right: 10px;
            color: #689f38;
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            margin: 40px 0;
        }
        .stat-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            flex: 1;
            min-width: 200px;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a237e;
            display: block;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
            font-weight: 600;
        }
        .interview {
            background-color: #fffde7;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border-left: 8px solid #ffc107;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #5d4037;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            padding: 0 20px;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: #ffb300;
            position: absolute;
            opacity: 0.5;
        }
        .quote::before {
            top: -20px;
            left: 0;
        }
        .quote::after {
            bottom: -40px;
            right: 0;
        }
        .interviewee {
            text-align: right;
            font-weight: 600;
            color: #1a237e;
        }
        .search-box {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
        }
        .search-box h3 {
            color: #1b5e20;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #4caf50;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #1b5e20, #388e3c);
        }
        .user-feedback {
            margin-top: 60px;
            border-top: 2px solid #e0e0e0;
            padding-top: 40px;
        }
        .rating-container {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars i {
            transition: all 0.2s ease;
        }
        .stars i:hover, .stars i.active {
            transform: scale(1.2);
        }
        .comment-form, .rating-form {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #4caf50;
            outline: none;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
        .footer-links {
            background-color: #1a237e;
            color: white;
            padding: 50px 0 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #bbdefb;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #4caf50;
            text-decoration: underline;
        }
        footer {
            background-color: #0d1440;
            color: #bbdefb;
            padding: 30px 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .social-links {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a:hover {
            color: #4caf50;
            transform: translateY(-3px);
        }
        .copyright {
            font-size: 0.9rem;
            color: #90a4ae;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .section-padding { padding: 40px 0; }
            .stat-box { min-width: 150px; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 50px; width: 100%; }
            .search-btn { margin-top: 15px; padding: 15px; }
        }
