* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
    outline: none !important;
      scrollbar-color: #969ba5 #242c38;
      scroll-behavior: smooth;
  }

/* Ubah warna selection */
::-moz-selection { 
    background: #6366f1; 
    color: #fff;
  }
  
  ::selection {
    background: #6366f1;
    color: #fff;
  }

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

h1 {
    font-weight: 800;
}

.text-highlight {
    background-color: #ff0;
    padding: 0 5px;
    border-radius: 5px;
}

.text-light {
    font-weight: 300;
}

.container {
    display: grid;
    grid-template-columns: 30% 40% 30%;
}

.left-column, .right-column {
    background-color: lightgrey;
}

.main-column {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.content {
    padding: 20px;
}

/* CSS untuk tampilan mobile dan tablet */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 100%; 
    }

    .left-column, .right-column {
        display: none; 
    }

    .main-column {
        box-shadow: none;
    }
}

.primary {
    background-color: #6366F1;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: normal;
}

.primary:hover {
    background-color: #4F46E5;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.outline {
    background-color: #ffffff;
    color: #6366F1;
    border: 2px solid #6366F1;
    padding: 3px 13px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: normal;
}

.outline:hover {
    color: #ffffff;
    background-color: #6366F1;
    border-color: #6366F1;
}

/* Revisi Sticky Section */
.sticky-section {
    position: -webkit-sticky; 
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    padding: 0; 
    margin: 0; 
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-section .header-left, 
.sticky-section .header-right {
    padding: 10px 20px;
}

.spacer {
    display: inline-block;
    width: 5px;
}

.judulbanner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    line-height: 40px;
}

.videobanner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.videobanner iframe {
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* SECTION FITUR */
.fitur {
    background-color: #ffffff;
    padding: 30px 10px;
}

.fitur h2 {
    text-align: center;
    font-weight: bold;
    padding: 0 10px;
    font-size: 18px;
}

.fitur span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 95px;
    margin-top: -15px;
    margin-bottom: 20px;
}

.kotakIkon {
    display: grid;             
    grid-template-columns: 32% 36% 32%;  
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding-top: 5px;
}

.kotakIkon img {
    width: 32px;
    height: 32px;
}

.kotakIkon p {
    font-size: 12px;
    text-align: center;
    line-height: 12px;
    margin-top: 5px;
    margin-bottom: 0;
}

.kotakIkon .kiri {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
}

.kotakIkon .tengah {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    margin: 0 5px;
}

.kotakIkon .kanan {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
}
