* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 20px 0;
            border-bottom: 4px solid #f9a826;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f9a826;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(249, 168, 38, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo span {
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f9a826;
            color: #f9a826;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-toggle:hover {
            background: #f9a826;
            color: #0f0c29;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #eee;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid transparent;
        }
        nav a:hover {
            background: #f9a826;
            color: #0f0c29;
            border-color: #f9a826;
            transform: translateY(-2px);
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #6c757d;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #302b63;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #f9a826;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            color: #0f0c29;
            margin-bottom: 10px;
            line-height: 1.2;
            font-weight: 900;
            border-left: 6px solid #f9a826;
            padding-left: 20px;
        }
        h1 i {
            color: #f9a826;
            margin-right: 12px;
        }
        .last-updated {
            display: inline-block;
            background: #302b63;
            color: #fff;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-bottom: 30px;
            letter-spacing: 0.3px;
        }
        .last-updated i {
            margin-right: 8px;
            color: #f9a826;
        }
        h2 {
            font-size: 2rem;
            color: #0f0c29;
            margin: 50px 0 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f9a826;
            font-weight: 800;
        }
        h2 i {
            color: #f9a826;
            margin-right: 12px;
        }
        h3 {
            font-size: 1.5rem;
            color: #302b63;
            margin: 35px 0 12px;
            font-weight: 700;
        }
        h3 i {
            color: #f9a826;
            margin-right: 10px;
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #24243e;
            margin: 25px 0 10px;
            font-weight: 700;
            padding-left: 12px;
            border-left: 3px solid #f9a826;
        }
        p {
            margin-bottom: 18px;
            color: #2d2d44;
        }
        ul,
        ol {
            margin: 16px 0 20px 28px;
            color: #2d2d44;
        }
        li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf2e9, #fff5eb);
            border-left: 6px solid #f9a826;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 28px 0;
            box-shadow: 0 4px 12px rgba(249, 168, 38, 0.12);
        }
        .highlight-box strong {
            color: #0f0c29;
        }
        .tip-box {
            background: #e8f4f8;
            border-left: 6px solid #17a2b8;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 28px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }
        .stat-card i {
            font-size: 2.4rem;
            color: #f9a826;
            margin-bottom: 12px;
            display: block;
        }
        .stat-card .stat-num {
            font-size: 2rem;
            font-weight: 900;
            color: #0f0c29;
        }
        .stat-card .stat-label {
            color: #6c757d;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .step-list {
            counter-reset: step;
            list-style: none;
            margin: 20px 0;
        }
        .step-list li {
            counter-increment: step;
            padding: 16px 20px 16px 60px;
            background: #fff;
            border-radius: 12px;
            margin-bottom: 14px;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid #eee;
            transition: 0.3s;
        }
        .step-list li:hover {
            border-color: #f9a826;
            box-shadow: 0 4px 20px rgba(249, 168, 38, 0.12);
        }
        .step-list li::before {
            content: counter(step);
            position: absolute;
            left: 12px;
            top: 14px;
            width: 36px;
            height: 36px;
            background: #f9a826;
            color: #fff;
            font-weight: 900;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        .interview-card {
            background: #fff;
            border-radius: 18px;
            padding: 28px 30px;
            margin: 30px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
            transition: 0.3s;
        }
        .interview-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .interview-card .interviewee {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 18px;
        }
        .interview-card .interviewee i {
            font-size: 3rem;
            color: #f9a826;
            background: #fdf2e9;
            padding: 16px;
            border-radius: 50%;
        }
        .interview-card .interviewee h4 {
            border: none;
            padding: 0;
            margin: 0;
            font-size: 1.2rem;
        }
        .interview-card .interviewee small {
            color: #6c757d;
            font-size: 0.85rem;
        }
        .interview-card .q {
            font-weight: 700;
            color: #0f0c29;
            margin-top: 16px;
        }
        .interview-card .a {
            color: #2d2d44;
            padding-left: 20px;
            border-left: 3px solid #f9a826;
            margin-bottom: 10px;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            padding: 18px 24px;
            margin-bottom: 14px;
            border: 1px solid #eee;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: #f9a826;
        }
        .faq-item h4 {
            border: none;
            padding: 0;
            margin: 0 0 6px;
            color: #0f0c29;
            font-size: 1.1rem;
        }
        .faq-item h4 i {
            color: #f9a826;
            margin-right: 10px;
        }
        .faq-item p {
            margin: 0;
            color: #2d2d44;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            background: #0f0c29;
            color: #eee;
            padding: 12px 20px;
            font-size: 0.9rem;
            text-align: center;
            font-style: italic;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        @media (max-width:768px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        .card-form {
            background: #fff;
            border-radius: 18px;
            padding: 28px 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.4rem;
            border-bottom: 2px solid #f9a826;
            padding-bottom: 10px;
        }
        .card-form label {
            font-weight: 600;
            display: block;
            margin: 14px 0 6px;
            color: #0f0c29;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: 0.3s;
            background: #fafafa;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #f9a826;
            outline: none;
            box-shadow: 0 0 0 4px rgba(249, 168, 38, 0.15);
            background: #fff;
        }
        .card-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .card-form .btn {
            background: #f9a826;
            color: #0f0c29;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .card-form .btn:hover {
            background: #e8951a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(249, 168, 38, 0.3);
        }
        .card-form .btn i {
            font-size: 1.1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a826;
        }
        friend-link {
            display: block;
            background: #0f0c29;
            padding: 40px 0 30px;
            border-top: 4px solid #f9a826;
            margin-top: 40px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        friend-link a {
            color: #ddd;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            transition: 0.3s;
        }
        friend-link a:hover {
            background: #f9a826;
            color: #0f0c29;
        }
        friend-link a::before {
            content: "🔗 ";
        }
        footer {
            background: #0a0a1a;
            color: #aaa;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #1a1a3e;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        footer a {
            color: #f9a826;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        footer .copyright {
            font-size: 0.85rem;
            color: #777;
        }
        footer .copyright i {
            color: #f9a826;
        }
        @media (max-width:768px) {
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 18px;
                border-radius: 10px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .container {
                padding: 0 14px;
            }
            .interview-card {
                padding: 20px;
            }
            .card-form {
                padding: 20px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.5rem;
            }
            .step-list li {
                padding: 14px 16px 14px 52px;
            }
            .step-list li::before {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                left: 10px;
                top: 12px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        strong {
            color: #0f0c29;
        }
        .accent-text {
            color: #f9a826;
            font-weight: 700;
        }
