 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

    :root {
      --primary-color: #0d244b;
      --accent-color: #f7df1e;
      --text-light: #ffffff;
      --text-dark: #222;
    }

    body {
      font-family: 'Noto Sans', sans-serif;
    }

    section {
    padding: 80px 20px 0px;
    text-align: center;
}

     h1{
      font-size: 90px;
      font-family: 'Noto Sans', sans-serif;
     
    }

     h2{
      font-size: 2.3rem;
      font-family: 'Noto Sans', sans-serif;
       color:var(--primary-color);
           text-shadow: 2px 2px 0px #00000070;
           text-transform: uppercase;
    }

     h3{
      font-size: 18px;
      font-family: 'Noto Sans', sans-serif;
       color:var(--primary-color);
    }

     h4{
      font-size: 1.1rem;
      font-family: 'Noto Sans', sans-serif;
       color:var(--primary-color);
    }

     h5{
      font-size: 90px;
      font-family: 'Noto Sans', sans-serif;
       color:var(--primary-color);
      
    }

     h6{
      font-size: .88rem;
      font-family: 'Noto Sans', sans-serif;
       color:var(--primary-color);
    }

     p , a , li , span , button , input , select{
      font-size: 16px;
      font-family: 'Noto Sans', sans-serif;
       color:var(--text-dark);
       line-height: 1.6;
    }
   

    /* ===============================
       Header Section
    ================================ */
    .header-section {
      width: 100%;
      background: url("./image/bali1.avif") center/cover no-repeat;
      display: flex;
      flex-direction: column;
    }

    /* Navbar */
    .header-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 8%;
      background:var(--primary-color);
      position: relative;
      z-index: 1000;
     
    }

    .header-logo {
      width: 90px;
    }

    .header-logo img {
      width: 100%;
    }

    /* Desktop Menu */
    .header-menu {
      display: flex;
      gap: 25px;
      list-style: none;
    }

    .header-menu li a {
      text-decoration: none;
      color: var(--text-light);
      transition: 0.3s;
    }

    .header-menu li a.active,
    .header-menu li a:hover {
      color: var(--accent-color);
    }

    /* Buttons */
    .header-buttons {
      display: flex;
      gap: 10px;
    }

    .header-btn {
      padding: 6px 14px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      border-radius: 3px;
      transition: 0.3s;
    }

    .header-btn-register {
      background: var(--accent-color);
      color: var(--primary-color);
    }

    .header-btn-signin {
      background: #fff;
      color: var(--primary-color);
    }

    .header-btn-register:hover,
    .header-btn-signin:hover {
      opacity: 0.9;
    }

    /* Toggle Button (Hamburger) */
    .header-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1100;
    }

    .header-toggle span {
      width: 25px;
      height: 3px;
      background: var(--text-light);
      border-radius: 2px;
      transition: 0.4s;
    }

    /* Animate to "X" */
    .header-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .header-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .header-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Navbar (hidden by default) */
    .header-mobile {
      display: none;
      flex-direction: column;
      gap: 15px;
      background: rgb(13, 36, 75);
      padding: 20px;
      text-align: center;
    }

    .header-mobile.active {
      display: none;
    }

    .header-mobile .header-menu {
      flex-direction: column;
      gap: 15px;
    }

    .header-mobile .header-buttons {
      flex-direction: column;
    }

    /* Hero */
    .header-hero {
      text-align: center;
      margin: auto;
      color: var(--text-light);
      padding: 100px 20px;
    }

    .header-hero h1 {
    
      font-weight: bold;
      line-height: 1.2;
      text-shadow: 3px 4px 0px #00000070;
    }

    /* Search Bar */
    .header-search {
      background: #fff;
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
      padding: 12px 15px;
      border-radius: 6px;
      margin: 80px auto 0;
      flex-wrap: wrap;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      width: fit-content;
    }

    .header-search input,
    .header-search select {
      padding: 10px 15px;
      border: 2px solid var(--accent-color);
      border-radius: 4px;
      outline: none;
      min-width: 150px;
    }

    .header-search button {
      padding: 10px 20px;
      background: var(--accent-color);
      color: var(--primary-color);
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.3s;
    }

    .header-search button:hover {
      opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 992px) {
      /* Hide desktop menu & buttons */
      .header-menu,
      .header-buttons {
        display: none;
      }

      .header-mobile.active {
      display: flex;
      gap: 25px;
    }

      /* Show hamburger */
      .header-toggle {
        display: flex;
      }

      /* Ensure mobile menu only shows under 768px */
      .header-mobile {
        /* display: none; */
      }

      .header-hero h1 {
        font-size: 72px;
      }

      .header-search {
        flex-direction: column;
        align-items: stretch;
      }

      .header-search input,
      .header-search select,
      .header-search button {
        width: 100%;
      }

      .header-menus {
      display: flex;
      gap: 25px;
      list-style: none;
      flex-direction: column;
      text-align: left;
    }

    .header-menus li a {
      text-decoration: none;
      color: var(--text-light);
      transition: 0.3s;
    }

    .header-menus li a.active,
    .header-menus li a:hover {
      color: var(--accent-color);
    }

    /* Buttons */
    .header-buttonss {
      display: flex;
      gap: 10px;
    }

    .header-search {
        width:50%
    }

    div#headerMobile {
    position: absolute;
    top: 59px;
    width: 100%;
}


    
}

 @media (max-width: 768px) {
.header-hero {
        padding: 50px 20px;
    }

    .header-search {
        width:80%;
    margin: 40px auto 0
    }

        .header-hero h1 {
        font-size: 38px;
    }
}




/* section2 */

.container {
    max-width: 1260px;
    margin: auto;
}

.travel-hero {
  padding: 80px 0%;
  font-family: 'Poppins', sans-serif;
}

.travel-hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

/* LEFT */
.travel-hero-left {
  flex: 1 1 50%;
   padding: 0px 10px 0px 0px;
   text-align: left;
}

.travel-subtitle {
  color:var(--primary-color);
  /* font-size: 0.85rem; */
  letter-spacing: 3px;
    font-weight: 500;
  margin-bottom: 10px;
}

.travel-title {

  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--primary-color);
      text-shadow: 2px 2px 0px #00000070;
      margin-top: 15px;
}

.travel-title span {
  color: var(--accent-color);
  font-size: 2.3rem;

}

.travel-desc {
  font-size: 1rem;
  margin-bottom: 15px;
  
}

.travel-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.travel-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.travel-features i {
  color: #2e9cc9;
  margin-right: 8px;
}

/* Contact */
.travel-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.travel-contact i {
  font-size: 30px;
  color: #2e9cc9;
}

.travel-contact small {
  font-size: 0.85rem;
  color: #555;
}

.travel-contact p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e9cc9;
  margin: 0;
}

/* RIGHT */
.travel-hero-right {
  flex: 1 1 45%;
  position: relative;
}

.travel-img-wrapper {
  position: relative;
  display: inline-block;
}

.travel-img-wrapper img {
  width:100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}





/* .travel-img-wrapper {
    width: 300px;
} */

.travel-hero-right {
    display: flex;
    justify-content: end;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
  .travel-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .travel-hero-left {
    order: 1;
    text-align: left; 
  }

  .travel-hero-right {
    order: 2;
  }

  .travel-contact {
    /* justify-content: center; */
  }

  .travel-img-wrapper{
    width: 100%;
  }
}




/* section 3*/

.heading-span {
    color: var(--accent-color);
    font-size: 2.3rem;
}
.section-4 {
    text-align: center;
    
}

  .trusted-travel-subtitle {
      margin-bottom: 50px;
    }

    
/* .section-4 span {
    color: var(--accent-color);
    font-size: 2.3rem;
} */
.section-4 {
    text-align: center;
     background: var(--primary-color);
     /* padding: 60px 20px; */
}



.section-4 h4 {
    margin-bottom: 10px;
}

.section-4 h2 , .section-4 p{
    color: var(--text-light);

}

.trusted-travel-card p{
        color: var(--text-dark);
}

    .trusted-travel-hero img {
      width: 250px;
    }

    

    .trusted-travel-card-row {
      display: flex;
      width: 100%;
      justify-content: center;
      gap: 50px;
    }

    .trusted-travel-card {
      width: 300px;
      padding: 20px;
      text-align: left;
      margin: 10px 0px 20px;
      animation: cardFloat 4s ease-in-out infinite alternate;
     background: #edf4ff;
    border: 1px solid #0d244b38;
    border-radius: 5px;
    }

    .trusted-travel-card-1,
    .trusted-travel-card-3,
    .trusted-travel-card-5 {
      margin-left: 50px;
    }

    .trusted-travel-hero {
      align-items: center;
      justify-content: center;
      display: flex;
    }

    .trusted-travel-card h3 {
      font-size: 1rem;
      margin-bottom: 5px;
    }

    

    section.section-4{
      position:relative;
      padding-bottom: 80px;
    }

    /* Floating animations */
    @keyframes balloonFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    @keyframes cardFloat {
      0% { transform: translate(0, 0); }
      100% { transform: translate(0, -10px); }
    }


    @media (max-width: 1077px) {
.trusted-travel-card-1, .trusted-travel-card-3, .trusted-travel-card-5 {
    margin-left: 0px;
}
    }


    /* 📱 Tablets (<= 992px) */
@media (max-width: 992px) {
  .trusted-travel-card-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .trusted-travel-cards-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .trusted-travel-card {
    margin-left: 0 !important;
 
  }

  .trusted-travel-hero img {
    width: 200px;
  }
}

/* 📱 Mobile (<= 768px) */
@media (max-width: 768px) {
  .trusted-travel-card-row {
    flex-direction: column;
    gap: 20px;
  }

  .trusted-travel-hero {
    display: none;
}

  .trusted-travel-cards-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .trusted-travel-card {
    width: 90%;
    max-width: 300px;
    text-align: center;
  }

  .trusted-travel-hero img {
    width: 180px;
  }


}

/* 📱 Extra small (<= 480px) */
@media (max-width: 480px) {
  .trusted-travel-card {
    width: 100%;
    padding: 15px;
  }

  .trusted-travel-hero img {
    width: 150px;
  }

/* .section-4  h2 {
    font-size: 1.4rem;
  } */

  .trusted-travel-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}






/*  */






    .trending-destinations-subtitle {
    
      margin-bottom: 30px;
    }

    .trending-destinations-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      width: 100%;
      margin: auto;
    }

    .trending-destinations-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      height: 300px;
    }

    .trending-destinations-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .trending-destinations-card:hover img {
      transform: scale(1.1);
    }

    .trending-destinations-name {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      padding: 15px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .trending-destinations-card:hover .trending-destinations-name {
      opacity: 1;
    }




    /* section8 */

        .travel-blogs-section {
      text-align: center;
     
    }

    .travel-blogs-section h2 {
     
      margin-bottom: 15px;
    }

    .travel-blogs-section p {
      max-width: 700px;
      margin: 0 auto 40px;

    }

    /* Card Container */
    .travel-blogs-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    /* Card Style */
    .travel-blog-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      /* max-width: 300px; */
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease-in-out;
    }

    .travel-blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .travel-blog-content {
      padding: 15px;
      flex: 1;
    }

    .travel-blog-content h3 {
      
      margin: 0 0 10px;
    }

    .travel-blog-content p {
      
      margin-bottom: 15px;
    }

    .travel-blog-content a {
      display: inline-block;
      padding: 8px 14px;
      background: #ffcc00;
      color: #002147;
      text-decoration: none;
      font-size: 0.9rem;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .travel-blog-content a:hover {
      background: #e6b800;
    }

    /* Hover Effect */
    .travel-blog-card:hover {
      background: #002147;
      color: #fff;
      transform: translateY(-8px);
    }

    .travel-blog-card:hover h3,
    .travel-blog-card:hover p {
      color: #fff;
    }

    .travel-blog-card:hover a {
      background: #ffcc00;
      color: #002147;
    }

    /* Responsive */
    @media (max-width: 768px) {
    
      .travel-blogs-container {
        gap: 20px;
      }
    }


    /* section9 */
    
      .best-pictures-section {
      text-align: center;

    }

    .best-pictures-section h2 {
    
      margin-bottom: 15px;
    }

    .best-pictures-section p {
      max-width: 700px;
      margin: 0 auto 40px;
    
    }

    /* Grid System */
    .best-pictures-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 200px;
      gap: 15px;
    }

    .best-pictures-item {
      border-radius: 12px;
      overflow: hidden;
    }

    .best-pictures-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    /* Hover Effect */
    .best-pictures-item img:hover {
      transform: scale(1.05);
    }

    /* Custom Spans to create collage look */
    .best-pictures-item:nth-child(1) {
      grid-row: span 1;
    
    }
    .best-pictures-item:nth-child(2) {
      grid-column: span 1;
       grid-row: span 2;
    }
    .best-pictures-item:nth-child(3) {
      grid-column: span 1;
    }

    .best-pictures-item:nth-child(4) {
      grid-column: span 1;
      grid-row: span 2;
    }

     .best-pictures-item:nth-child(5) {
      grid-column: span 1;
      grid-row: span 2;
    }
    .best-pictures-item:nth-child(6) {
      grid-row: span 2;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .best-pictures-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
      }
    }

    @media (max-width: 600px) {
      .best-pictures-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }
      .best-pictures-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
      }
    }



    /* section10 */
section.need-help-section{
    background-color: var(--primary-color);
    margin-top: 80px;
       padding: 10px 0px 0px;
}


    .register-help {
   
      color: var(--text-light);
      padding:  0px 20px;
      display: flex;
      justify-content:space-between;
      align-items: center;
      /* padding:100px; */
      flex-wrap: wrap;
      /* gap: 50px; */
       
    }

    .register-help-text {
      text-align: left;
    }

   .register-help-text h2 {
    color: var(--text-light);
      display: block;
      margin-bottom: 5px;
    }

    .register-help-text p {
color: var(--text-light);
      
;
    }
    .register-help img {
      max-height: 200px;
      margin-left: 20px;
    }

    /* Form Section */
    .register-form-section {
      padding: 80px 20px;
      display: flex;
      justify-content: center;
      background: #fff;
    }

    .register-form-box {
    
      border: 2px solid #dfe4eb;
      padding: 30px;
      text-align: center;
    }

    .register-form-box h2 {
    
     
      margin-bottom: 10px;
      
    }

    .register-form-box p {
      
      margin-bottom: 20px;
      
    }

    .register-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .register-form input,
    .register-form textarea {
      width: 100%;
      padding: 12px;
      border: none;
      background-color: #0d244b;
      color: #fff;
      border-radius: 4px;
    }

    .register-form input::placeholder,
    .register-form textarea::placeholder {
      color: #ddd;
    }

    .register-form textarea {
      grid-column: span 2;
      resize: none;
      height: 100px;
    }

    .register-button {
      grid-column: span 2;
      padding: 14px;
      border: none;
      background-color: #0d244b;
      color: #fff;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
    }

    .register-button:hover {
      background-color: #123b6e;
    }

.register-form-main {
    display:flex;
    gap:50px;
}

.register-form-content , .main-register-form{
  width: 50%;
  text-align: left;
}

    #full-name{
      grid-column: span 2;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .register-form {
        grid-template-columns: 1fr;
      }

      .register-help {
        flex-direction: column;
        text-align: center;
        gap:50px;
        padding: 50px 0px 0px;
      }

      .register-help img {
        margin: 15px 0 0 0;
      }

      .register-form-main{
        flex-direction: column;
        gap: 20px;
      }

      .register-form-content , .main-register-form{
  width: 100%;
  text-align: left;
}

.register-form-box{
  padding: 10px;
}


    }




    /* section11 */

    .testimonial-section {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 60px 20px;
    }

    .testimonial-section h2 {
     color: var(--text-light);
      text-align: center;
      margin-bottom: 10px;
    }

    .testimonial-section p {
      text-align: center;
      margin-bottom: 40px;
      color: var(--text-light);
    }

    .testimonial-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* Left side images */
    .testimonial-images {
      display: flex;
      /* flex-direction: column; */
      /* gap: 15px; */
    }

    .testimonial-images img {
      width: 180px;
      height: 130px;
      object-fit: cover;
      transform: rotate(-20deg);
      border-radius: 6px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .testimonial-images img:nth-child(2) {
      transform: rotate(-20deg);
          margin-left: -30px;
    }

    .testimonial-images img:nth-child(3) {
      transform: rotate(-20deg);
          margin-left: -30px;
    }

    /* Right side feedback */
    .testimonial-feedback {
      max-width: 500px;
      text-align: left;
    }

    .testimonial-profile {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }

    .testimonial-profile img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
    }

    .testimonial-profile-info h3 {
      margin: 0;
      font-size: 16px;
    }

    .testimonial-profile-info span {
      font-size: 18px;
      color: var(--text-light);
      font-weight: bold;
    }

    .testimonial-stars {
      color: #ffda44;
      margin: 10px 0;
      font-size: 24px;
    }

    .testimonial-text {
      
      line-height: 1.6;
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .testimonial-nav {
      display: flex;
      gap: 15px;
    }

    .testimonial-nav button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--accent-color);
      background: none;
      color: var(--accent-color);
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s;
    }

    .testimonial-nav button:hover {
      background-color: var(--accent-color);
      color: var(--primary-color);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .testimonial-container {
        flex-direction: column;
        text-align: center;
      }

      .testimonial-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }

      .testimonial-feedback {
        max-width: 100%;
        margin-top: 50px;
      }
    }


    /* footer */
 .footer {
      background:var(--primary-color);
      color: var(--text-light);
      padding: 60px 8% 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      
    margin-top: 80px;
    }

    /* Logo & About */
    .footer-about img {
      width: 120px;
      margin-bottom: 15px;
    }

    .footer-about p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-light);
    }

    /* Headings */
    .footer h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: var(--accent-color);
    }

    /* Links */
    .footer-links ul,
    .footer-destinations ul {
      list-style: none;
    }

    .footer-links ul li,
    .footer-destinations ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a,
    .footer-destinations ul li a {
      text-decoration: none;
      color: var(--text-light);
      transition: 0.3s;
    }

    .footer-links ul li a:hover,
    .footer-destinations ul li a:hover {
      color: var(--accent-color);
    }

    /* Newsletter */
    .footer-newsletter p {
      font-size: 14px;
      margin-bottom: 10px;
      color: var(--text-light);
    }

    .footer-newsletter input {
      padding: 10px;
      border: none;
      border-radius: 4px;
      outline: none;
      width: 100%;
      margin-bottom: 10px;
    }

    .footer-newsletter button {
      width: 100%;
      padding: 10px;
      background: var(--accent-color);
      border: none;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      color: var(--primary-color);
      transition: 0.3s;
    }

    .footer-newsletter button:hover {
      background: var(--accent-color);
    }

    /* Social Icons */
    .footer-social {
      margin-top: 15px;
    }

    .footer-social a {
      display: inline-block;
      margin-right: 10px;
      color: var(--accent-color);
      font-size: 18px;
      transition: 0.3s;
    }

    .footer-social a:hover {
      color: var(--text-light);
    }

    /* Bottom Bar */
    .footer-bottom {
      grid-column: 1 / -1;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 20px;
      font-size: 14px;
      color: #dcdcdc;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .footer-social a {
        margin: 0 8px;
      }
    }





