* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d3436;
            background-color: #f5f5f5;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0984e3;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffdd59;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: white;
        }
        .logo em {
            font-style: normal;
            color: #ffeaa7;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: #ffdd59;
            transform: translateY(-1px);
        }
        .daman-link {
            color: #ffdd59 !important;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            margin: 12px 8px;
            text-align: center;
            font-size: 1.05rem;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            box-shadow: 0 4px 0 #219653;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #1e8449;
        }
        .btn-download:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #1e8449;
        }
        .btn-login {
            background-color: #e67e22;
            color: white;
            box-shadow: 0 4px 0 #d35400;
        }
        .btn-login:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #c0392b;
        }
        .btn-login:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #c0392b;
        }
        h1 {
            font-size: 2.7rem;
            color: #0984e3;
            margin: 40px 0 30px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #ffdd59;
            padding-bottom: 20px;
            text-transform: capitalize;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.1rem;
            color: #2d3436;
            margin: 50px 0 25px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
            border-left: 5px solid #0984e3;
            padding-left: 15px;
        }
        h2::before {
            content: "🏑";
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.6rem;
            color: #0984e3;
            margin: 35px 0 18px;
            font-weight: 700;
            padding-bottom: 8px;
            border-bottom: 2px dashed #74b9ff;
            text-transform: capitalize;
        }
        h4 {
            font-size: 1.3rem;
            color: #2d3436;
            margin: 25px 0 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "✅";
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.9;
            color: #37474f;
        }
        .highlight {
            font-weight: 800;
            color: #e74c3c;
            font-size: 1.1rem;
        }
        .keyword {
            font-weight: 800;
            color: #0984e3;
            font-size: 1.1rem;
        }
        .indian-note {
            background-color: #e3f2fd;
            padding: 15px 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #0984e3;
            font-style: italic;
            color: #263238;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .img-responsive:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-size: 0.95rem;
            color: #636e72;
            margin-top: 12px;
            text-align: center;
            font-style: italic;
        }
        ul, ol {
            margin: 25px 0 25px 40px;
            font-size: 1.05rem;
            color: #37474f;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        li strong {
            color: #0984e3;
        }
        .section {
            background-color: white;
            border-radius: 15px;
            padding: 35px;
            margin-bottom: 40px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s ease;
        }
        .section:hover {
            box-shadow: 0 6px 22px rgba(0,0,0,0.1);
        }
        .stats-box {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
            justify-content: center;
        }
        .stat-card {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            width: 220px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #0984e3;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.12);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #e74c3c;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            color: #636e72;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: capitalize;
        }
        .tabs {
            display: flex;
            gap: 12px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .tab {
            padding: 12px 22px;
            background-color: #e3f2fd;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #0984e3;
            font-size: 1rem;
        }
        .tab.active {
            background-color: #0984e3;
            color: white;
        }
        .tab:hover {
            background-color: #74b9ff;
            color: white;
        }
        .tab-content {
            margin: 25px 0;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 12px;
            border: 1px solid #e3f2fd;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 30px 0;
        }
        .community-link {
            padding: 12px 20px;
            background-color: #0984e3;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .community-link::before {
            content: "💬";
        }
        .community-link:hover {
            background-color: #0873c9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .guide-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #0984e3;
        }
        .guide-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.12);
        }
        .guide-card h4 {
            margin-top: 0;
            color: #0984e3;
        }
        .events-calendar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .event-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border-left: 4px solid #e74c3c;
        }
        .event-date {
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .event-title {
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .event-desc {
            font-size: 0.95rem;
            color: #37474f;
            margin-bottom: 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0;
        }
        .tag {
            padding: 8px 16px;
            background-color: #e3f2fd;
            color: #0984e3;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #0984e3;
            color: white;
        }
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0 40px;
        }
        .category {
            padding: 10px 20px;
            background-color: #f1f8e9;
            color: #27ae60;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .category:hover {
            background-color: #27ae60;
            color: white;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 5px solid #ffdd59;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 280px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffdd59;
            border-bottom: 3px solid #ffdd59;
            padding-bottom: 10px;
            display: block;
            text-align: left;
        }
        .footer-section h4::before {
            display: none;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: #ffdd59;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3436;
            line-height: 1.8;
        }
        .recommendation strong {
            color: #0984e3;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #4a4a4a;
            color: #b2bec3;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 2rem;
                margin: 30px 0 20px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .stat-card {
                width: 100%;
                max-width: 300px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
            }
            .section {
                padding: 25px;
            }
            .img-container {
                margin: 30px 0;
            }
            p {
                font-size: 1rem;
                margin-bottom: 18px;
            }
            ul, ol {
                margin: 20px 0 20px 30px;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
            .section {
                padding: 20px;
            }
            .tab {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            .tab-content {
                padding: 18px;
            }
        }
