.abt {
    /* background: hsla(24, 86%, 48%, 1);

    background: linear-gradient(270deg, hsla(24, 86%, 48%, 1) 1%, hsla(0, 0%, 100%, 1) 100%);
    
    background: -moz-linear-gradient(270deg, hsla(24, 86%, 48%, 1) 1%, hsla(0, 0%, 100%, 1) 100%);
    
    background: -webkit-linear-gradient(270deg, hsla(24, 86%, 48%, 1) 1%, hsla(0, 0%, 100%, 1) 100%);
    
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#E26511", endColorstr="#FFFFFF", GradientType=1 ); */
    width: 100%;
    height: 75vh;
    display: flex;
    flex-direction: column; /* Supaya h2 & h3 tampil kebawah */
    justify-content: center; /* Tengah secara vertikal */
    align-items: center;     /* Tengah secara horizontal */
  }
  
  .abt h2 {
    color: rgb(255, 0, 0);
    z-index: 20;
    margin-bottom: 10px; /* Biar ada jarak ke h3 */
  }
  
  .abt h3 {
    color: pink;
    z-index: 20;
  }
  
  
  .abt img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
  }
  
  .about-section {
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('/images/abt.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 1; 
  }
  
  
  
  .about-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.425 );
    mix-blend-mode: lighten;
    pointer-events: none;
    z-index: 1;
  }
  
  
  .about-section .content {
    position: relative;
    z-index: 10;
    color: black;
    text-align: center;
    padding-top: 150px;
  }

  .hero-section {
    height: 70vh;
    background-image: url('/images/abt.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-shadow: 1px 1px 5px #000;
  }

  .about-section {
    padding: 100px 0;
    background-color: #f8f1e7;
    text-align: center;
  }
  
  .judul-about {
    font-size: 2.5rem;
    font-weight: bold;
    background-color: rgba(255,255,255,0.9);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 25px;
    margin-bottom: 40px;
  }
  
  .samping-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .samping {
    width: 45%;
    height: auto;
    display: block;
  }
  
  .sosmed-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .circle {
    width: 50px;
    height: 50px;
    background-color: #2c1200; /* warna buletannya */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .circle:hover {
    background-color: #ff914d;
    color: white;
  }
  
  .last {
 background-color: white;
 width: 100%;
 height: 6vh;
  }

  .PO {
    position: absolute;
    top: 530px;
    right: 250px;
    z-index: 5;
    font-size: 52px;
    color: white;
    transition: 0.2s ease;
  }

  .PO:hover {
    color: rgba(226, 101, 17, 0.75);
    transform: scale(1.2);
  }