* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: #2C3E50;
            color: white;
            padding: 1rem 5%;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ECF0F1;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 1.5rem;
        }
        
        .nav-menu a {
            color: #ECF0F1;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #3498DB;
        }
        
        /* Main Content */
        main {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 5%;
        }
        
        .terms-container {
            background-color: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .terms-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        
        .terms-header h1 {
            font-size: 2.5rem;
            color: #2C3E50;
            margin-bottom: 1rem;
        }
        
        .terms-header p {
            color: #7F8C8D;
            font-size: 1.1rem;
        }
        
        .terms-section {
            margin-bottom: 2.5rem;
        }
        
        .terms-section h2 {
            color: #2C3E50;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .terms-section h3 {
            color: #3498DB;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        
        .terms-section p {
            margin-bottom: 1rem;
        }
        
        .terms-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .terms-section li {
            margin-bottom: 0.5rem;
        }
        
        /* Footer */
        footer {
            background-color: #2C3E50;
            color: #ECF0F1;
            padding: 3rem 5%;
            margin-top: 3rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            color: #3498DB;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ECF0F1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #3498DB;
        }
        
        .footer-contact p {
            margin-bottom: 0.8rem;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .terms-container {
                padding: 2rem 1.5rem;
            }
            
            .terms-header h1 {
                font-size: 2rem;
            }
            
            .terms-section h2 {
                font-size: 1.5rem;
            }
            
            .terms-section h3 {
                font-size: 1.2rem;
            }
        }

