        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f6f9fc;
            color: #1a2634;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: 0.2s;
        }
        a:hover {
            color: #004080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 1.8rem 2.2rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0 1.2rem 0;
            border-bottom: 2px solid #eef2f6;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #f5a623, #e8831a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(232, 131, 26, 0.15);
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #4a5a6e;
            color: #4a5a6e;
            letter-spacing: 0.3px;
            margin-left: 4px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            color: #1a2634;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .nav-bar a:hover {
            background: #f0f4fa;
            color: #e8831a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a2634;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f0f4fa;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #5a6a7a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b0c0d0;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a6a7a;
        }
        .breadcrumb a:hover {
            color: #e8831a;
            text-decoration: none;
        }
        .breadcrumb .active {
            color: #1a2634;
            font-weight: 500;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.6rem 0;
            background: linear-gradient(135deg, #1a2634 40%, #e8831a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.4rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0e6d8;
            color: #1a2a3a;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem 0;
            color: #2a3a4a;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.4rem 0;
            color: #3a4a5a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a8a9a;
            background: #f4f7fb;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.2rem;
        }
        .feature-img {
            margin: 1.8rem 0 2.2rem 0;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .feature-img figcaption {
            font-size: 0.9rem;
            color: #5a6a7a;
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem 0;
            font-size: 0.98rem;
            background: #fafcff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1a2a3a;
            color: #fff;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8ecf0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f4f9ff;
        }
        .form-card {
            background: #f8faff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.2rem 0;
            border: 1px solid #e8ecf2;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            color: #1a2a3a;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d0d8e0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: 0.2s;
            background: #fff;
            margin-bottom: 1rem;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            border-color: #e8831a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 131, 26, 0.15);
        }
        .form-card textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-primary {
            background: linear-gradient(145deg, #f5a623, #e8831a);
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 12px rgba(232, 131, 26, 0.25);
        }
        .btn-primary:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(232, 131, 26, 0.35);
        }
        .btn-primary:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d0d8e0;
            cursor: pointer;
            direction: rtl;
            margin-bottom: 0.8rem;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5a623;
        }
        .star-rating.active i {
            color: #f5a623;
        }
        .comment-item {
            background: #f8faff;
            padding: 1rem 1.4rem;
            border-radius: 14px;
            margin-bottom: 0.8rem;
            border-left: 4px solid #e8831a;
        }
        .comment-item strong {
            color: #1a2a3a;
        }
        .comment-item small {
            color: #7a8a9a;
            font-size: 0.85rem;
        }
        footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 2px solid #eef2f6;
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            padding: 1rem 0 0.6rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            color: #4a5a6e;
            border-bottom: 1px dashed #d0d8e0;
        }
        friend-link a:hover {
            color: #e8831a;
            border-bottom-color: #e8831a;
            text-decoration: none;
        }
        .copyright {
            color: #5a6a7a;
            font-size: 0.9rem;
            padding: 1rem 0 0.4rem 0;
            text-align: center;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1.2rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.4rem 0;
                gap: 0.3rem;
            }
            .nav-bar.show {
                display: flex;
            }
            .nav-bar a {
                width: 100%;
                padding: 0.6rem 0.8rem;
                border-radius: 10px;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .form-card {
                padding: 1.2rem 1rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .feature-img {
                margin: 1rem 0 1.4rem 0;
            }
        }
        @media (min-width: 769px) {
            .nav-bar {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        section {
            scroll-margin-top: 1.2rem;
        }
        .highlight-box {
            background: #fcf8f0;
            border-left: 5px solid #f5a623;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            margin: 1.6rem 0;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .flex-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding-left: 1.2rem;
            margin-bottom: 1.2rem;
        }
        .flex-list li {
            min-width: 180px;
        }
        .tag-india {
            background: #f0f4fa;
            border-radius: 30px;
            padding: 0.15rem 0.8rem;
            font-size: 0.8rem;
            color: #3a5a7a;
            display: inline-block;
        }
