        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            padding-bottom: 50px;
        }
        .header {
            background: linear-gradient(135deg, #1a365d, #2a5298);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: inline-block;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 15px;
        }
        .btn-download {
            background-color: #28a745;
            color: white;
            border: 2px solid #28a745;
        }
        .btn-download:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-login {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        .btn-login:hover {
            background-color: white;
            color: #1a365d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placeholder.com/pune-hero.jpg') center/cover no-repeat;
            padding: 120px 0;
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ffd700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .content-left {
            flex: 1;
            min-width: 300px;
        }
        .content-right {
            flex: 0 0 350px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 25px;
            position: sticky;
            top: 100px;
        }
        .info-box {
            margin-bottom: 30px;
        }
        .info-box h3 {
            color: #1a365d;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .info-list {
            list-style: none;
        }
        .info-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        .info-list li:before {
            content: "•";
            color: #ffd700;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .article-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        .article-section h2 {
            color: #1a365d;
            margin-bottom: 25px;
            font-size: 32px;
            border-left: 5px solid #ffd700;
            padding-left: 15px;
        }
        .article-section h3 {
            color: #2a5298;
            margin: 25px 0 15px;
            font-size: 24px;
        }
        .article-section p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .article-section ul {
            margin: 0 0 20px 30px;
        }
        .article-section ul li {
            margin-bottom: 10px;
            font-size: 17px;
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: #856404;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .gallery-caption {
            padding: 12px;
            background-color: white;
            font-size: 15px;
            color: #555;
            text-align: center;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .stats-table th, .stats-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .stats-table th {
            background-color: #1a365d;
            color: white;
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .stats-table tr:hover {
            background-color: #e9ecef;
        }
        .footer {
            background-color: #1a365d;
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tag {
            background-color: #2a5298;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffd700;
            transform: translateY(-2px);
        }
        .tag:hover a {
            color: #1a365d;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 15px;
            color: #bbb;
        }
        .daman-recommendation {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-top: 25px;
            border: 1px solid #e9ecef;
        }
        .daman-recommendation h4 {
            color: #1a365d;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .daman-recommendation p {
            color: #555;
            margin-bottom: 15px;
            font-size: 16px;
        }
        .daman-link {
            color: #28a745 !important;
            font-weight: 600;
            text-decoration: underline !important;
        }
        .daman-link:hover {
            color: #218838 !important;
            text-decoration: none !important;
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            .btn {
                margin: 10px 0 0;
                width: 100%;
                text-align: center;
            }
            .hero h1 {
                font-size: 38px;
            }
            .hero p {
                font-size: 18px;
            }
            .content-right {
                flex: 1;
                position: static;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 32px;
            }
            .article-section h2 {
                font-size: 28px;
            }
            .article-section h3 {
                font-size: 22px;
            }
            .logo {
                font-size: 24px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .article-section {
                padding: 20px;
            }
            .article-section h2 {
                font-size: 24px;
            }
            .btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            .image-gallery {
                grid-template-columns: 1fr;
            }
        }
