* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5fafe;
            color: #2d3748;
            line-height: 1.9;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 800;
            text-decoration: none;
            color: #ffffff;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #2d3748;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .nav-links .daman-link {
            background-color: #2d3748;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
        }
        .nav-links .daman-link:hover {
            background-color: #4a5568;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            background-color: #2d3748;
            padding: 8px 15px;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7e5f, #feb47b);
                padding: 30px 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #2d3748;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ff7e5f;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 30px;
            color: #e53e3e;
            margin: 60px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #4299e1;
            font-weight: 700;
        }
        h3 {
            font-size: 24px;
            color: #38b2ac;
            margin: 40px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🦌";
            font-size: 28px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
            color: #4a5568;
        }
        .highlight {
            font-weight: 700;
            color: #e53e3e;
            font-size: 19px;
        }
        .agile-antelope {
            font-weight: 800;
            color: #4299e1;
            font-size: 19px;
        }
        .btn-container {
            text-align: center;
            margin: 70px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 20px;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .download-btn {
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #38a169, #2f855a);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .login-btn {
            background: linear-gradient(135deg, #4299e1, #3182ce);
            color: white;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #3182ce, #2b6cb0);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 25px 0 25px 50px;
            font-size: 18px;
            color: #4a5568;
        }
        li {
            margin-bottom: 15px;
            padding-left: 10px;
        }
        ul li::marker {
            color: #ff7e5f;
            font-size: 20px;
        }
        ol li::marker {
            color: #4299e1;
            font-weight: 600;
        }
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
        }
        th, td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
            font-size: 17px;
        }
        th {
            background: linear-gradient(135deg, #2d3748, #4a5568);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover {
            background-color: #f8fafc;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        tr:nth-child(even) {
            background-color: #fafafa;
        }
        .indian-note {
            background-color: #fffaf0;
            border-left: 5px solid #f6ad55;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .indian-note p {
            font-size: 18px;
            color: #2d3748;
            font-weight: 500;
        }
        .indian-note strong {
            color: #ed8936;
        }
        .festival-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e53e3e, #c53030);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            margin-right: 12px;
            font-size: 15px;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .tags-container, .categories-container {
            margin: 60px 0 40px;
        }
        .tags-container h3, .categories-container h3 {
            margin-bottom: 25px;
        }
        .tag, .category {
            display: inline-block;
            padding: 10px 20px;
            margin: 0 10px 15px 0;
            background: linear-gradient(135deg, #9f7aea, #805ad5);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .tag:hover, .category:hover {
            background: linear-gradient(135deg, #805ad5, #6b46c1);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .category {
            background: linear-gradient(135deg, #38b2ac, #319795);
        }
        .category:hover {
            background: linear-gradient(135deg, #319795, #287c7a);
        }
        .footer {
            background: linear-gradient(135deg, #2d3748, #1a202c);
            color: white;
            padding: 70px 0 30px;
            margin-top: 100px;
            border-radius: 30px 30px 0 0;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .footer p {
            text-align: center;
            margin-bottom: 30px;
            font-size: 18px;
            color: #e2e8f0;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 17px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ff7e5f;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a5568;
            font-size: 16px;
            color: #a0aec0;
        }
        .recommendation {
            text-align: center;
            font-size: 19px;
            color: #f0f8fb;
            margin: 40px 0;
            line-height: 1.8;
        }
        .recommendation a {
            color: #ff7e5f;
            font-weight: 700;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .keyword-badge {
            display: inline-block;
            background-color: #e8f4f8;
            color: #4299e1;
            padding: 3px 10px;
            border-radius: 15px;
            margin: 0 5px;
            font-weight: 600;
            font-size: 17px;
        }
        .section-summary {
            background-color: #f0f8fb;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid #4299e1;
        }
        .section-summary p {
            font-size: 18px;
            color: #2d3748;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 34px;
                margin-bottom: 35px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 22px;
            }
            p, ul, ol, li {
                font-size: 17px;
            }
            .btn {
                padding: 15px 25px;
                font-size: 18px;
                width: 100%;
                justify-content: center;
            }
            .btn-container {
                gap: 20px;
            }
            th, td {
                padding: 15px;
                font-size: 16px;
            }
            .indian-note {
                padding: 15px;
            }
            .logo {
                font-size: 28px;
            }
        }
