        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --gradient: linear-gradient(135deg, #3498db, #8e44ad);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html, body {
             background-color: #f9f9f9;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            /* background: var(--gradient); */
            color: white;
            /* padding: 2rem 0; */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 1.5rem;
            line-height: 1.4;
            font-weight: 300;
        }

        .banner {
            width: 100%;
            max-width: 1000px;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        section {
            padding: 3rem 0;
        }

        .about {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            margin-top: -3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 10;
        }

        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        p {
            margin-bottom: 1.5rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin: 2rem 0;
        }

        .card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .card-header {
            background: var(--gradient);
            color: white;
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .card-body {
            padding: 1.5rem;
        }

        .card ul {
            list-style-position: inside;
            margin-bottom: 1rem;
        }

        .card li {
            margin-bottom: 0.5rem;
        }

        .speaker {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
        }

        .speaker-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary-color);
            margin-bottom: 1rem;
        }

        .speaker-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .speaker-title {
            color: var(--secondary-color);
            font-style: italic;
            margin-bottom: 1rem;
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }

        .table th, .table td {
            padding: 1rem;
            border-bottom: 1px solid #ddd;
        }

        .table th {
            background-color: var(--secondary-color);
            color: white;
            text-align: left;
        }

        .table tr:nth-child(even) {
            background-color: #f5f5f5;
        }

        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .btn-accent {
            background: var(--accent-color);
        }

        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
            }

            .header-content {
                padding: 1rem;
            }

            .logo {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1rem;
            }

            .about {
                margin-top: -2rem;
                padding: 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        body[dir="rtl"] .pkp_navigation_primary ul {
            right: auto;
          }
          
          body[dir="rtl"] .pkp_navigation_user ul {
            right: auto;
          }
          
          @media (min-width: 992px) {
            body[dir="rtl"] .pkp_navigation_user_wrapper {
              top: 25px;
              right: auto;
              left: 0;
              width: 25%;
              padding-left: 30px;
            }
            body[dir="rtl"] .pkp_structure_sidebar:before {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              right: initial;
              bottom: 0;
              width: 300px;
              border-right: 1px solid #ddd;
            }
            body[dir="rtl"] .obj_article_details .main_entry {
              float: right;
            }
          }
          
          /* Menu Tambahan Kanan by ade@htp.ac.id */
          
          .hoverTable {
            width: 100%;
            border-collapse: collapse;
          }
          .hoverTable th {
            height: 30px;
            background: #ffffff;
            color: #00595d;
          }
          .hoverTable td {
            height: 30px;
            padding-top: 3px;
            vertical-align: middle;
            border-bottom: 1px solid #ffffff;
            text-align: center;
          }
          .hoverTable td a {
            width: 100%;
            display: block;
          }
          /* warna latar setiap baris tabel dan warna tulisan */
          .hoverTable tr {
            background: #00595d;
            color: #ffffff;
          }
          /* warna ketika dilewati mouse */
          .hoverTable tr:hover {
            background-color: #059aa1;
          }
          .hoverTable a {
            color: #ffffff;
          }
          .hoverTable a:hover {
            color: black;
          }
         
          .pkp_site_name {
            text-align: center;
          }
          .data {
            background-color: #f0f0f0;
          }
.pkp_site_name_wrapper{
padding-left:0px;
padding-right:0px;
background:#ffffff;
}
.pkp_site_name .is_img img{
max-height: 600px;
margin-top: 0px;
margin-bottom: 0px;
} 
    
.pkp_structure_head{
background-color:#ffffff;
}
@media (min-width: 992px) {
    .pkp_site_name {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
} 
.pkp_navigation_user>li>a{
    color:black
}.pkp_site_nav_menu a:hover, .pkp_site_nav_menu a:focus{
    color:var(--primary-color);
}
.pkp_navigation_primary_row {
    display: none !important;
}
@media (max-width: 992px) {
    .pkp_head_wrapper, .has_site_logo .pkp_head_wrapper{

        height: 230px;
    }
}
.pkp_brand_footer {
    display: none;
  }
    
  .history-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.history-list {
    list-style-type: none;
}

.history-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.history-list li::before {
    content: "•";
    color: var(--accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.board-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.board-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.board-list {
    list-style-type: none;
}

.board-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.board-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.person-name {
    font-weight: 600;
    color: var(--dark);
}

.person-affiliation {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}
.pkp_footer_content {
    padding: 0;
  }
  .pkp_structure_footer_wrapper{
    border-bottom: none;
  }

.section-title {
    
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 4px 25px rgba(26, 42, 108, 0.4); }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .speaker-img:hover {
    transform: scale(1.05);
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1a2a6c, #2c3e50);
  }
  
  .board-list li::before {
    content: '•';
    color: #1a2a6c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  @media (max-width: 768px) {
    .section-title { font-size: 2.2rem !important; }
    .grid { grid-template-columns: 1fr !important; }
    .board-grid { grid-template-columns: 1fr !important; }
    table { font-size: 0.9rem !important; }
    .speaker-img { width: 120px !important; height: 120px !important; }
  }

    
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .footer-links a:hover {
      color: #3498db;
    }
    
    .footer-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #3498db, #2ecc71);
      transition: width 0.3s ease;
    }
    
    .footer-links a:hover::after {
      width: 100%;
    }
    
    .social-icons a:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }
    
    @media (max-width: 768px) {
      h3 { font-size: 2rem !important; }
      .footer-links { gap: 15px !important; }
      p { font-size: 1rem !important; }
    }
    .page_title {
      font-size: 2rem !important;
      /* make it center */
      text-align: center;
    }

  

  
  @media (max-width: 768px) {
    div[style*="max-width: 1200px"] {
      padding: 30px 15px;
    }
    
    h2[style*="font-size: 2.5rem"] {
      font-size: 2rem !important;
    }
    
    div[style*="display: flex"] {
      flex-direction: column;
    }
    
    div[style*="grid-template-columns"] {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }
  