/* Mobile device optimization styles */

/* Base mobile styles */
@media (max-width: 768px) {
  /* Base styles */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Hero section styles */
  .hero {
    padding: 30px 0 40px;
    background-image: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  }
  
  .hero h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: center;
    color: var(--dark-color);
  }
  
  .hero h2 i {
    color: var(--primary-color);
    margin-right: 8px;
  }
  
  /* Make download form vertical layout */
  .download-form {
    display: flex;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    gap: 12px;
  }
  
  /* Input field styles */
  .download-form input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid rgba(67, 97, 238, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(67, 97, 238, 0.05);
    margin-bottom: 0;
    transition: all 0.3s ease;
  }
  
  .download-form input:focus {
    border-color: rgba(67, 97, 238, 0.3);
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.1);
    outline: none;
  }
  
  /* Paste button */
  .paste-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 16px;
    background-color: #f0f4ff;
    color: var(--primary-color);
    border: 1px solid rgba(67, 97, 238, 0.1);
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .paste-btn:active {
    background-color: #e6ecff;
    transform: scale(0.98);
  }
  
  .paste-btn i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--primary-color);
  }
  
  /* Download button */
  .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.25);
    transition: all 0.3s ease;
  }
  
  .download-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.2);
  }
  
  .download-btn i {
    margin-right: 8px;
    font-size: 18px;
    color: white;
  }
  
  /* Optimize other areas */
  .feature-card {
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(67, 97, 238, 0.1);
  }
  
  .two-columns {
    flex-direction: column-reverse;
  }
  
  .column {
    margin-bottom: 20px;
  }
  
  /* Optimize step list */
  .steps-list {
    padding-left: 0;
  }
  
  .step-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(67, 97, 238, 0.1);
  }
  
  .step-number {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  /* FAQ optimization */
  .faq-header h4 {
    font-size: 16px;
    padding-right: 30px;
  }
  
  /* Footer optimization */
  footer {
    padding: 30px 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .copyright {
    text-align: center;
  }
}

/* Small screen device optimization */
@media (max-width: 375px) {
  .hero h2 {
    font-size: 22px;
  }
  
  .download-form input,
  .paste-btn,
  .download-btn {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .download-btn i, 
  .paste-btn i {
    margin-right: 6px;
    font-size: 15px;
  }
} 