body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #FFD464;
            height: auto;
        }
        .logo {
            width: 60px;
            height: 60px;
        }

        .ham {
            display: none; /* Hide by default */
            cursor: pointer; /* Add cursor pointer */
        }

        .links {
            text-decoration: none;
            color: #000;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 20px;
            float: right;
            padding: 10px;
        }
        
        header, main, footer {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        header {
            margin-bottom: -20px;
        }

        h1 {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 40px;
            border: #fff;
        }

        h2 {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: #000;
        }
        
        .store {
            text-align: center;
            font-size: 20px;
            margin-top: 40px;
        }

        .app {
            width: 150px;
        }

        .mockup {
            display: none;
            width: 50%;
            height: auto;
        }

        .mockupr {
            width: 50%;
            height: auto;
        }

        .logo2 {
            display: none;
        }

        .dropdown {
            display: none;
        }

        .tc {
            margin-left: 20px;
        }

        .about {
            margin-top: 210px;
            float: right;
            width: 1000px;
            margin-right: 60px;
            font-size: 20px;
        }

        .hand {
            width: 600px;
            height: auto;
            float: left;
            margin-top: 20px;
            margin-left: 160px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 600px;
            margin: 20px 0;
        }

        .form-input {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            padding: 10px;
            margin: 10px 0;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .form-input textarea {
            resize: none;
            height: 150px;
        }

        .submit-btn {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            padding: 12px 20px;
            color: white;
            background-color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #333;
        }
        @media (max-width: 768px) {
            body {
                background-color: #FFD464;
            }
            .mockup {
                display: block;
                width: 100%;
                height: 100%;
            }

            .mockupr {
                display: none;
            }

            .logo2 {
                display: block;
                width: 80px;
                height: 80px;
                margin-top: -150px
            }

            .ham {
                display: block;
                width: 40px;
                margin-top: 8px;
                height: 40px;
                margin-right: 7px;
                float: right;
            }

            .links {
                display: none;
            }

            .dropdown {
                display: none;
                position: absolute;
                top: 60px;
                right: 10px;
                background-color: #FFD464;
                box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
                z-index: 1;
            }

            .dropdown a {
                color: black;
                padding: 12px 16px;
                text-decoration: none;
                display: block;
            }

            .dropdown a:hover {
                background-color: #ddd;
            }

            .about {
                margin-top: 100px;
                margin-left: 20px;
                float: right;
                width: 100%;
                margin-right: 0px;
                font-size: 15px;
            }

            .hand {
                width: 400px;
                height: auto;
                float: left;
                margin-top: 20px;
                margin-left: 0px;
            }
        }