
  /* Responsive Menu */
  @media (max-width: 768px) {

    
    #nav-menu {
      position: absolute;
      width: 100%;
      padding: 20px 0;
      margin-top: 80px;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      display: none;
      align-items: center;
      justify-content: center;
    }
  
    #nav-menu ul {
      flex-direction: column;
      align-items: center;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
    }
  
    #nav-menu ul li {
      margin: 20px 0;
      text-align: center;
      width: 100%;
    }
  
    #hamburger-checkbox:checked ~ #nav-menu {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }

    .hamburger .line{
        display: block;
    }
  
    #hamburger-checkbox:checked ~ .hamburger .line:first-child {
      transform: rotate(45deg) translateY(10px);
    }
    
    #hamburger-checkbox:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
      }      

    #hamburger-checkbox:checked ~ .hamburger .line:last-child {
      transform: rotate(-45deg) translateY(-10px);
    }

    #hero-section {
        grid-template-columns: 1fr; /* On smaller screens, switch to a single column layout */
    }

    #about-me{
      grid-template-columns: 1fr; /* On smaller screens, switch to a single column layout */
    }

    #about-text{
      aspect-ratio: 1 / 1;
    }

    .gallery-item{
      width: 50%;
      opacity: 1;
    }
  }

  @media (max-width: 1000px) {
    .pricing-section {
      display: flex;
      flex-direction: column;      
      justify-content: center;
      width: 100%;      
    }

    .pricing-card:hover {
      transform: scale(1);
    }

    .contact {
      padding-top: 2em;
      flex-direction: column;
      gap: 2em;
    }

    .footer-container{
      flex-direction: column;
      gap: 1.2em;
    }

  }