    * {
      font-family: 'Poppins', sans-serif;
    }

    :root {
      --primary-color: #1B5E3F;
      --secondary-color: #FFD700;
      --accent-color: #0066cc;
      --light-bg: #f8f9fa;
    }

    body {
      background-color: var(--light-bg);
    }

    /* Navbar */
    .navbar {
      background: linear-gradient(135deg, var(--primary-color) 0%, #2d7a52 100%) !important;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.4rem;
      color: white !important;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .navbar-brand img {
      width: 40px;
      height: 40px;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: var(--secondary-color) !important;
    }

    .nav-link.active {
      color: var(--secondary-color) !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--secondary-color);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(27, 94, 63, 0.65), rgba(27, 94, 63, 0.65)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231B5E3F" width="1200" height="600"/><path fill="%23ffffff" opacity="0.1" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      padding: 120px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-section h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      animation: slideDown 0.8s ease;
    }

    .hero-section p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
      animation: slideUp 0.8s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .btn-primary-custom {
      background-color: var(--secondary-color);
      border: none;
      color: var(--primary-color);
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .btn-primary-custom:hover {
      background-color: #ffc700;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
    }

    /* Section Styling */
    .section-title {
      color: var(--primary-color);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      position: relative;
      padding-bottom: 20px;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    /* Visi Misi */
    .visi-misi-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 50px 0;
    }

    .visi-misi-card {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border-top: 5px solid var(--primary-color);
    }

    .visi-misi-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .visi-misi-card h3 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.8rem;
    }

    .visi-misi-card p, .visi-misi-card li {
      color: #555;
      line-height: 1.8;
      font-size: 1rem;
    }

    /* Table Styling */
    .table-container {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      margin: 30px 0;
      overflow: auto;
    }

    .table {
      margin-bottom: 0;
      border-collapse: collapse;
    }

    .table thead {
      background: linear-gradient(135deg, var(--primary-color), #2d7a52);
      color: white;
    }

    .table th {
      border: none;
      padding: 18px 15px;
      font-weight: 600;
      text-align: center;
    }

    .table td {
      padding: 15px;
      border-bottom: 1px solid #e9ecef;
      vertical-align: middle;
    }

    .table tbody tr {
      transition: all 0.3s ease;
    }

    .table tbody tr:hover {
      background-color: #f0f5f3;
    }

    .table tbody tr:last-child td {
      border-bottom: none;
    }

    /* Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin: 40px 0;
    }

    .card-custom {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .card-custom:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      border-color: var(--secondary-color);
    }

    .card-custom-header {
      background: linear-gradient(135deg, var(--primary-color), #2d7a52);
      color: white;
      padding: 25px;
      text-align: center;
    }

    .card-custom-header h5 {
      font-weight: 700;
      margin: 0;
      font-size: 1.3rem;
    }

    .card-custom-body {
      padding: 25px;
    }

    .card-custom-body p {
      color: #555;
      line-height: 1.6;
      margin: 0;
    }

    /* Akreditasi */
    .akreditasi-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
      margin: 30px 0;
    }

    .akreditasi-badge h3 {
      color: var(--primary-color);
      font-weight: 700;
      margin: 0;
      font-size: 2rem;
    }

    .akreditasi-badge p {
      color: var(--primary-color);
      font-weight: 600;
      margin: 5px 0 0 0;
    }

    /* Galeri */
    .galeri-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }

    .galeri-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      aspect-ratio: 1;
      cursor: pointer;
      min-height: 250px;
    }

    .galeri-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .galeri-item:hover img {
      transform: scale(1.1);
    }

    .galeri-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 15px;
    }

    .galeri-placeholder i {
      font-size: 3rem;
      color: white;
    }

    .galeri-placeholder p {
      font-weight: 600;
      margin: 0;
      color: white;
    }

    .galeri-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(27, 94, 63, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .galeri-item:hover .galeri-overlay {
      opacity: 1;
    }

    .galeri-overlay p {
      color: white;
      font-weight: 600;
      text-align: center;
      padding: 20px;
    }

    /* Kontak */
    .kontak-section {
      background: linear-gradient(135deg, var(--primary-color), #2d7a52);
      color: white;
      padding: 60px 0;
      margin-top: 60px;
    }

    .kontak-item {
      text-align: center;
      margin: 30px 0;
    }

    .kontak-icon {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .kontak-item h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .kontak-item p {
      margin: 0;
      opacity: 0.9;
    }

    /* Pengumuman */
    .pengumuman-box {
      background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
      color: white;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
      box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    }

    .pengumuman-box h3 {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.8rem;
    }

    .pengumuman-box ul {
      margin: 0;
      padding-left: 20px;
    }

    .pengumuman-box li {
      margin: 10px 0;
      line-height: 1.6;
    }

    /* Extrakulikuler */
    .ekstrakurikuler-badge {
      display: inline-block;
      background: white;
      color: var(--primary-color);
      padding: 12px 20px;
      border-radius: 25px;
      margin: 8px;
      font-weight: 600;
      border: 2px solid var(--primary-color);
      transition: all 0.3s ease;
    }

    .ekstrakurikuler-badge:hover {
      background: var(--primary-color);
      color: white;
    }

    /* Footer */
    footer {
      background: var(--primary-color);
      color: white;
      padding: 40px 0 20px;
      margin-top: 60px;
    }

    .footer-content {
      margin-bottom: 30px;
    }

    .footer-content h5 {
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }

    .footer-content p {
      opacity: 0.9;
      margin: 8px 0;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 20px;
      text-align: center;
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2rem;
      }

      .visi-misi-container {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .table {
        font-size: 0.9rem;
      }
    }
