@media (max-width: 1024px) {
    /* Adjust column layout */
    .column-1 {
      width: 60%;
      min-height: auto;
    }
  
    .column-2,
    .column-3 {
      width: 40%;
      min-height: auto;
    }
  
    /* Typography scaling */
    h1 {
      font-size: 56px;
      margin-right: 60px;
    }
  
    h2 {
      font-size: 30px;
      margin-left: 250px;
    }
  
    p {
      font-size: 18px;
    }
  
    .footer-logo img {
      width: 100px;
    }
  
    .footer-social a img {
      width: 28px;
      height: 28px;
    }
  }
  
  

  @media (max-width: 900px) {
    .row {
      flex-wrap: wrap;
      flex-direction: column;
    }
  
    .column-1,
    .column-2,
    .column-3 {
      width: 100%;
      min-height: auto;
    }
  
    .column-half {
      width: 100%;
    }
  
    /* Center text and reduce margins */
    h1, h2, h3, p {
      text-align: center;
      margin: 20px auto;
    }
  
    h1 {
      font-size: 48px;
      margin-top: 100px;
      margin-right: 0;
    }
  
    h2 {
      font-size: 26px;
      margin-left: 0;
    }
  
    /* Footer layout stacks */
    .footer-content {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  
    .footer-logo {
      position: static;
      margin-bottom: 10px;
    }
  
    .footer-social {
      position: static;
      transform: none;
      justify-content: center;
    }
  }
  
  

  @media (max-width: 600px) {
    .row {
      flex-direction: column;
    }
  
    .column-1,
    .column-2,
    .column-3,
    .column-half {
      width: 100%;
      min-height: auto;
    }
  
    h1 {
      font-size: 36px;
      margin: 50px auto 20px;
    }
  
    h2 {
      font-size: 22px;
      margin: 10px auto;
    }
  
    h3 {
      font-size: 20px;
      margin-top: 40px;
    }
  
    p {
      font-size: 16px;
      margin: 10px 20px;
    }
  
    .footer {
      padding: 15px 20px;
    }
  
    .footer-logo img {
      width: 80px;
    }
  
    .footer-social a img {
      width: 24px;
      height: 24px;
    }
  
    .footer-social {
      gap: 15px;
    }
  }