* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #f8f8f8;
            line-height: 1.6;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #1a1a1a;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #ff3e00;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffd700;
            font-style: italic;
        }
        nav {
            display: flex;
            align-items: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        nav a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff3e00;
            transition: width 0.3s ease;
        }
        nav a:hover {
            color: #ffd700;
        }
        nav a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: #ffd700 !important;
            font-weight: 600;
        }
        .daman-link::after {
            background-color: #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #f8f8f8;
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: #ff3e00;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
        }
        .download-btn {
            background-color: #ff3e00;
            color: white;
        }
        .download-btn:hover {
            background-color: #e03500;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .login-btn:hover {
            background-color: #0f7ae5;
        }
        main {
            padding: 50px 0 80px;
        }
        h1 {
            font-size: 42px;
            margin-bottom: 40px;
            color: #ff3e00;
            text-align: center;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 20px;
            text-transform: capitalize;
        }
        h2 {
            font-size: 30px;
            margin: 60px 0 25px;
            color: #ffd700;
            border-left: 5px solid #ff3e00;
            padding-left: 20px;
            text-transform: capitalize;
        }
        h3 {
            font-size: 24px;
            margin: 40px 0 18px;
            color: #ffffff;
            font-weight: 600;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            line-height: 1.9;
            text-align: justify;
        }
        strong {
            color: #ff3e00;
            font-weight: 700;
        }
        em {
            color: #ffd700;
            font-style: italic;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
            border: 2px solid #ffd700;
        }
        .img-caption {
            margin-top: 15px;
            font-size: 17px;
            color: #cccccc;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        ul, ol {
            margin: 30px 0 30px 50px;
            font-size: 18px;
            line-height: 2.1;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 10px;
        }
        blockquote {
            border-left: 4px solid #ffd700;
            padding: 20px 30px;
            margin: 30px 0;
            background-color: #1a1a1a;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            font-size: 19px;
            color: #e0e0e0;
        }
        .faq-container {
            background-color: #1a1a1a;
            border-radius: 12px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #333;
            padding-bottom: 25px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-weight: 700;
            color: #ffd700;
            margin-bottom: 12px;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #ff3e00;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            font-size: 18px;
            color: #f8f8f8;
            line-height: 1.9;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        footer {
            background-color: #1a1a1a;
            padding: 70px 0 30px;
            border-top: 3px solid #ffd700;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 22px;
            border-bottom: 2px solid #ff3e00;
            padding-bottom: 12px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 17px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ff3e00;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #0f0f0f;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 5px solid #ffd700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }
        .recommendation h4 {
            color: #ffd700;
            font-size: 20px;
            margin-bottom: 15px;
        }
        .recommendation p {
            margin-bottom: 0;
            font-size: 18px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 17px;
            color: #999;
            line-height: 1.8;
        }
        @media (max-width: 1024px) {
            nav ul {
                gap: 25px;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            p, ul, ol, .faq-answer {
                font-size: 17px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                gap: 20px;
                width: 100%;
                text-align: center;
                padding: 20px 0;
                background-color: #1a1a1a;
                border-radius: 8px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 25px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            h1 {
                font-size: 32px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 20px;
                margin: 30px 0 15px;
            }
            p, ul, ol, .faq-answer {
                font-size: 16px;
                line-height: 1.8;
            }
            ul, ol {
                margin-left: 30px;
            }
            .img-caption {
                font-size: 16px;
            }
            .faq-container {
                padding: 25px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
            }
            .footer-section h3 {
                font-size: 20px;
            }
        }
