@media only screen and (max-width: 968px) {

   .navbar {
      padding: 0 15px;
      height: 65px;
   }
   .nav-logo {
      font-size: 18px;
   }
   .nav-links a {
      font-size: 15px;
   }
   .hero {
      height: auto;
      padding-top: 120px;
      padding-bottom: 80px;
   }
   .hero-content h1 {
      font-size: 32px;
      line-height: 1.2;
   }
   .hero-content p {
      font-size: 16px;
      max-width: 90%;
   }
   .btn-primary {
      padding: 12px 22px;
      font-size: 15px;
   }
   .section-title {
      font-size: 26px;
   }
   .features {
      padding: 50px 15px;
   }
   .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }
   .feature-card {
      padding: 20px;
   }
   .feature-card h3 {
      font-size: 20px;
   }
   .about {
      padding: 50px 15px;
   }
   .about-content {
      max-width: 90%;
   }
   .about-content h2 {
      font-size: 26px;
      line-height: 1.3;
   }
   .about-content p {
      font-size: 16px;
   }
   .cta {
      padding: 60px 15px;
   }
   .cta h2 {
      font-size: 26px;
      line-height: 1.3;
   }
   .contact {
      padding: 60px 15px;
   }
   .contact-form {
      max-width: 100%;
      gap: 12px;
   }
   .contact-form input,
   .contact-form textarea {
      font-size: 15px;
      padding: 12px;
   }
   .footer {
      font-size: 13px;
      padding: 15px;
   }

   .nav-links {
      position: fixed;
      top: 70px;
      right: -100%;
      width: 200px;
      height: calc(100vh - 70px);
      background: rgba(2,27,77,0.97);
      flex-direction: column;
      padding: 30px 20px;
      gap: 20px;
      transition: right 0.3s ease;
   }
   .nav-links.show {
      right: 0;
   }
   .nav-toggle {
      display: flex;
   }

}
