
            /* Enhanced touch targets for mobile */
            @media (max-width: 768px) {
                button, .btn, a.button, input[type="submit"], input[type="button"] {
                    min-height: 44px;
                    min-width: 44px;
                    padding: 12px 16px;
                    touch-action: manipulation;
                }
                
                .nav-link, .menu-item, .dropdown-item {
                    min-height: 44px;
                    display: flex;
                    align-items: center;
                    padding: 12px 16px;
                }
                
                input, textarea, select {
                    min-height: 44px;
                    font-size: 16px; /* Prevents zoom on iOS */
                }
                
                .card, .tool-card, .blog-card {
                    margin-bottom: 16px;
                }
                
                /* Improve tap highlight */
                * {
                    -webkit-tap-highlight-color: rgba(124, 58, 237, 0.1);
                    -webkit-touch-callout: none;
                }
                
                /* Better spacing for mobile */
                .container {
                    padding-left: 16px;
                    padding-right: 16px;
                }
                
                h1 { font-size: 2rem; line-height: 1.2; }
                h2 { font-size: 1.5rem; line-height: 1.3; }
                h3 { font-size: 1.25rem; line-height: 1.4; }
                
                /* Optimize forms for mobile */
                .form-group {
                    margin-bottom: 20px;
                }
                
                label {
                    font-size: 16px;
                    margin-bottom: 8px;
                    display: block;
                }
            }
        