* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --gold: #FFD700;
            --blue: #000080;
            --dark: #333333;
            --light-bg: #F9F9F9;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark);
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--saffron), var(--gold), var(--green));
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--blue);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--white);
            text-shadow: 1px 1px 2px var(--dark);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--blue);
            text-decoration: underline;
        }
        .daman-link {
            color: var(--blue);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }
        .btn-container {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: var(--green);
            color: var(--white);
        }
        .btn-download:hover {
            background-color: #0F6B08;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(19, 136, 8, 0.3);
        }
        .btn-login {
            background-color: var(--blue);
            color: var(--white);
        }
        .btn-login:hover {
            background-color: #000066;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 128, 0.3);
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 36px;
            color: var(--blue);
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px solid var(--saffron);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 28px;
            color: var(--green);
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid var(--saffron);
        }
        h3 {
            font-size: 22px;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: 600;
            color: var(--blue);
        }
        .emoji {
            margin: 0 5px;
        }
        .section-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sub-section {
            margin-bottom: 30px;
        }
        ul, ol {
            margin: 20px 0 20px 40px;
            font-size: 17px;
        }
        li {
            margin-bottom: 10px;
        }
        .img-placeholder {
            width: 100%;
            height: 300px;
            background-color: var(--light-bg);
            border-radius: 8px;
            margin: 25px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed var(--saffron);
            overflow: hidden;
        }
        .img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--gold);
            border-bottom: 2px solid var(--saffron);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--saffron);
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--gold);
        }
        .recommendation h4 {
            color: var(--gold);
            margin-bottom: 10px;
            font-size: 18px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 15px;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--white);
                padding: 20px;
                box-shadow: var(--shadow);
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .section-card {
                padding: 20px;
            }
            .img-placeholder {
                height: 200px;
            }
            .btn-container {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            .footer-content {
                gap: 20px;
            }
        }
