        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Nirmala UI', Arial, sans-serif;
            line-height: 1.7;
            color: #222;
            background-color: #f8f9fa;
            font-size: 18px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4, .nav-links a, .footer-heading {
            font-family: 'Mangal', 'Nirmala UI', 'Segoe UI', sans-serif;
            font-weight: 700;
            color: #1a237e;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ff9800;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #3949ab;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 500;
            color: #555;
            margin-bottom: 2.5rem;
            padding: 1.2rem;
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-radius: 10px;
            border-left: 5px solid #673ab7;
        }
        strong, b {
            color: #d32f2f;
            font-weight: 700;
        }
        em {
            color: #388e3c;
            font-style: italic;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .icon-list {
            list-style: none;
            padding-left: 1rem;
        }
        .icon-list li {
            margin-bottom: 1rem;
            padding-left: 2.5rem;
            position: relative;
        }
        .icon-list li i {
            position: absolute;
            left: 0;
            top: 0.3rem;
            color: #4caf50;
            font-size: 1.3rem;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .site-header {
            background: linear-gradient(90deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffeb3b;
            text-decoration: none;
            font-family: 'Mangal', sans-serif;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 15px;
            font-size: 2.8rem;
        }
        .logo:hover {
            color: #fff;
            transform: scale(1.03);
            transition: all 0.3s;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            margin-left: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1a237e;
                width: 280px;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8eaf6;
            margin-top: 0.2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.7rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.7rem;
            color: #666;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: #1a237e;
        }
        .hero-image {
            margin: 2.5rem 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
        }
        .hero-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .img-caption {
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            text-align: center;
        }
        .sidebar {
            background-color: #fff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px dashed #c5cae9;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #9fa8da;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: #5c6bc0;
            box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.2);
        }
        .search-btn {
            background-color: #5c6bc0;
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background-color: #3949ab;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .star-rating {
            direction: rtl;
            text-align: center;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            padding: 0 0.2rem;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .form-input, .form-textarea {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #5c6bc0;
            outline: none;
            box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.2);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .form-submit:hover {
            background: linear-gradient(to right, #f57c00, #e64a19);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255, 87, 34, 0.4);
        }
        .main-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .content-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #e1f5fe, #fce4ec);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border-left: 5px solid #7b1fa2;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #7b1fa2;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
            margin-top: 0.5rem;
        }
        .web-links-section {
            background: linear-gradient(to right, #e8eaf6, #f3e5f5);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background-color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .web-link a {
            color: #3949ab;
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #ff9800;
            text-decoration: underline;
        }
        .site-footer {
            background: linear-gradient(90deg, #1a237e, #311b92);
            color: #e0e0e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-heading {
            color: #ffeb3b;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3949ab;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bbbbbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffeb3b;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            body { font-size: 16px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .container { padding: 0 15px; }
            .main-content, .sidebar { padding: 1.5rem; }
            .logo { font-size: 2rem; }
            .lead { font-size: 1.2rem; }
        }
