body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6; 
        }
        header {
            background-color: #FF6B35; 
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #FF6B35;
            margin-bottom: 20px;
            border-bottom: 2px solid #FF6B35;
            padding-bottom: 10px;
        }
    h2 {
        color: #E85A4F;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    h3 {
        color: #D9534F;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .download-btn, .login-btn {
        display: inline-block;
        background-color: #FF6B35;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        margin: 10px 0;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .download-btn:hover, .login-btn:hover {
        background-color: #E85A4F;
    }
    .image-container {
        text-align: center;
        margin: 30px 0;
    }
    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    footer {
        background-color: #333;
        color: white;
        padding: 20px;
        margin-top: 40px;
        border-radius: 10px;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px;
    }
    .footer-links a {
        color: #FF6B35;
        text-decoration: none;
    }
    .copyright {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #999;
    }
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            position: absolute;
            top: 80px;
            left: 0;
            background-color: #FF6B35;
            padding: 15px;
            border-radius: 0 0 10px 10px;
        }
        .nav-links.active {
            display: flex;
        }
        .mobile-menu-btn {
            display: block;
        }
        body {
            padding: 10px;
        }
    }
