.footer {
    background-color: #519CFF;
    color: #000;
    padding: 40px 20px;
    width: 100%;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .footer-image {
    flex: 1;
    max-width: 150px;
  }
  
  .footer-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
  }
  
  .footer-content {
    flex: 3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    margin: 0 20px;
    min-width: 250px;
  }
  

  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #000;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #555;
  }
  
  .fas,
  .fab {
    margin-right: 8px;
  }
  
  .footer-school-name{
    margin-top: 30px;
    margin-left: 24px;
    margin-bottom: 10px;
    font-family: Inter, var(--default-font-family);
    font-size: 24px;
    font-weight: 800;
  }
  
  .phone-number-container{
    margin-left: 100px;
  }
  
  .footer-phone-number{
    font-size: 20px;
    font-weight: bold;
  }
  
  .footer-phone-icon{
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .footer-location-icon{
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }
  
  .box {
    display: flex;
    gap: 10px; /* Spasi antar ikon, opsional */
    margin-top:20px;  
    margin-left: 120px;
  }
  
  
  /* Facebook icon (black) */
  .facebook {
    width: 29.167px;
    height: 29.167px;
    background-image: url('https://lh3.googleusercontent.com/d/1iG7-hg0-vWiyyG7Xj3qRUkvVpSlZmLwA');
    background-size: 100% 100%;
    background-repeat: no-repeat;  
  }
  
  /* Instagram icon (black) */
  .instagram {
    width: 29.167px;
    height: 29.167px;
    background-image: url('https://lh3.googleusercontent.com/d/1wA_d_lijzSNDCihpw-zIgJ3jCAMfo9jQ');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  
  /* Twitter icon (black) */
  .twitter {
    width: 29.167px;
    height: 29.167px;
    background-image: url('https://lh3.googleusercontent.com/d/17TCBAsmj36FptY3-S-e8NTRAU2amV7qF');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  
  
  
  /* TikTok icon (black) */
  .tiktok {
    width: 20.167px;
    height: 25px;
    background-image: url('https://lh3.googleusercontent.com/d/15YlRvyowhyvpysuG4z3hjI1bSlL3p7gV');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  
  /* YouTube icon (black) */
  .youtube {
    width: 30.167px;
    height: 28.167px;
    background-image: url('https://lh3.googleusercontent.com/d/1bJH_wCN268a2ZYGhgmfAC-NHMsygrnxi');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  
  .link-dasar{
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  
  .footer-title{
    font-family: Inknut Antiqua, var(--default-font-family);
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px; 
  }
  
  .link-dasar ul li a {
    position: relative;
    color: #000000;
    font-family: Inria Sans, var(--default-font-family);
    font-size: 24px;
    font-weight: 400;
    line-height: 28.776px;
    text-align: justified;
    white-space: nowrap;
  }
  
  .maps { /* Alamat section */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-map-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px; /* Adds space between the map and the text */
  }
  
  .address-containerx{
    display: flex;
  
  }
  
  .address-text{
    margin-left: 5px;
  }
  
  /* Mobile View (no longer needed for vertical stacking, but kept for consistency) */
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-image {
        max-width: 100px;
        margin-bottom: 20px;
    }

    .footer-image img {
        max-width: 100px;
    }

    .footer-content {
        flex-direction: column;
        width: 100%;
    }

    .footer-section {
        width: 100%;
        margin: 10px 0;
    }

    .phone-number-container {
        margin: 0;
        margin-bottom: 15px;
    }

    .box {
        margin: 0;
        justify-content: center; /* Ensure social icons stay centered */
    }

    .footer-school-name{
        margin: 0;
    }

    .facebook{
        margin: 0;
    }
}