@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    flex-direction: column;
    gap: 14px;
    padding: 16px;

    background: rgba(20, 20, 20, 0.95);
    border-radius: 14px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .about-inner {
    max-width: 100%;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 320px;
    margin: 0 auto;
  }
}
