:root {
            --primary: #d4af37;
            --secondary: #1a237e;
            --accent: #c62828;
            --dark: #0f1419;
            --light: #f5f5f5;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: var(--dark);
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, var(--secondary) 0%, #283593 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .logo:hover {
            color: white;
            transform: scale(1.05);
            transition: var(--transition);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
        }
        .search-box input {
            border: none;
            padding: 10px 15px;
            width: 250px;
            outline: none;
        }
        .search-box button {
            background: var(--primary);
            border: none;
            color: var(--secondary);
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ffd54f;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0f2f5;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--secondary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary);
        }
        h3 {
            color: var(--accent);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: linear-gradient(to right, #f8f9fa, #e8f4fd);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 5px solid var(--primary);
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffde7;
            padding: 1.5rem;
            border-radius: var(--radius);
            border: 2px solid #ffd54f;
            margin: 2rem 0;
        }
        .highlight h3 {
            color: #d84315;
            margin-top: 0;
        }
        .gift-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .gift-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        .gift-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .gift-card h4 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .gift-code {
            background: var(--dark);
            color: var(--primary);
            padding: 0.8rem;
            border-radius: 5px;
            font-family: monospace;
            font-size: 1.2rem;
            text-align: center;
            margin: 1rem 0;
            letter-spacing: 1px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-box {
            background: linear-gradient(135deg, var(--secondary), #3949ab);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border: 3px solid var(--primary);
        }
        .content-img {
            float: right;
            width: 45%;
            max-width: 400px;
            margin: 0 0 1.5rem 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        @media (max-width: 768px) {
            .content-img {
                float: none;
                width: 100%;
                margin: 1.5rem 0;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .important {
            background: #ffebee;
            padding: 1.2rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .step-by-step {
            counter-reset: step;
            margin: 2rem 0;
        }
        .step {
            margin-bottom: 1.5rem;
            padding-left: 3.5rem;
            position: relative;
        }
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            background: var(--primary);
            color: var(--secondary);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .interactive-section {
            background: #f8fdff;
            border: 2px solid #bbdefb;
            border-radius: var(--radius);
            padding: 2rem;
            margin: 3rem 0;
        }
        .rating-section, .comment-section {
            margin-top: 2rem;
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: #ffc107;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary), #ffd54f);
            color: var(--secondary);
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--secondary), #3949ab);
            color: white;
        }
        .btn-secondary:hover {
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0 2rem;
            padding: 2rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .web-link {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2.5rem 0;
            margin-top: auto;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            list-style: none;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 1rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .container { padding: 0 15px; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .search-box { order: 3; width: 100%; margin-top: 1rem; }
            .search-box input { width: 100%; }
            .gift-list, .stats-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            article { padding: 1.5rem; }
            .intro, .highlight { padding: 1.2rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }
