* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Quicksand', sans-serif;
      background: #FEF9E6;  /* warna latar hangat */
      color: #2D3E40;
      scroll-behavior: smooth;
    }

    /* Warna ceria */
    :root {
      --primary: #FFB347;    /* oranye cerah */
      --secondary: #6CC9B0;  /* mint segar */
      --accent: #F47C7C;     /* merah muda ceria */
      --soft-blue: #A7E0E0;
      --dark-text: #2F4858;
      --light-bg: #FFF8E7;
    }

    h1, h2, h3 {
      font-family: 'Fredoka One', cursive;
      letter-spacing: 1px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 12px 0;
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo i {
      font-size: 2rem;
      color: var(--primary);
    }
    .logo h1 {
      font-size: 1.8rem;
      color: var(--dark-text);
    }
    .logo span {
      color: var(--accent);
    }
    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: var(--dark-text);
      transition: 0.3s;
      font-size: 1.05rem;
    }
    .nav-links a:hover {
      color: var(--primary);
      transform: translateY(-2px);
    }
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--primary);
    }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, #FFF0D4 0%, #FFE2C0 100%);
      padding: 60px 0 70px;
      border-radius: 0 0 50px 50px;
      margin-bottom: 20px;
    }
    .hero-content {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }
    .hero-text {
      flex: 1;
    }
    .hero-text h2 {
      font-size: 2.8rem;
      color: var(--accent);
      margin-bottom: 15px;
    }
    .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 25px;
      color: #3e5a5f;
    }
    .btn-primary {
      background: var(--primary);
      border: none;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: bold;
      font-size: 1rem;
      font-family: 'Quicksand', sans-serif;
      color: white;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 5px 0 #c46f1a;
      display: inline-block;
      text-decoration: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 0 #c46f1a;
    }
    .hero-image {
      flex: 1;
      text-align: center;
    }
    .hero-image i {
      font-size: 12rem;
      color: var(--secondary);
      filter: drop-shadow(8px 8px 12px rgba(0,0,0,0.1));
    }

    /* ===== SECTION UMUM ===== */
    section {
      padding: 60px 0;
    }
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 40px;
      color: var(--dark-text);
      position: relative;
      display: inline-block;
      width: 100%;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--primary);
      margin: 10px auto 0;
      border-radius: 5px;
    }
    .about-grid, .program-grid, .galeri-grid, .artikel-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }
    .card {
      color: #2D3E40 !important;
      background: white;
      border-radius: 40px;
      padding: 30px 20px;
      box-shadow: 0 15px 25px rgba(0,0,0,0.05);
      transition: 0.3s;
      text-align: center;
      flex: 1 1 260px;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card i {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    .program-card {
      background: #FFFAF0;
    }
    .galeri-item {
      border-radius: 30px;
      overflow: hidden;
      background: #fff3e0;
      box-shadow: 0 8px 15px rgba(0,0,0,0.1);
      flex: 1 1 250px;
      text-align: center;
      padding-bottom: 15px;
    }
    .galeri-item i {
      font-size: 4rem;
      margin: 20px 0 10px;
      color: var(--secondary);
    }
    .galeri-item p {
      font-weight: bold;
      padding: 8px;
    }
    .artikel-item {
      background: white;
      border-radius: 30px;
      padding: 20px;
      flex: 1 1 280px;
      text-align: left;
    }
    .artikel-item h4 {
      margin: 12px 0;
      color: var(--accent);
    }

    /* ===== KONTAK + PPDB ===== */
    .kontak-ppdb {
      background: var(--soft-blue);
      border-radius: 60px;
      margin: 40px auto;
      padding: 40px 20px;
    }
    .dual-column {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    .kontak-info, .ppdb-form {
      flex: 1;
      background: white;
      border-radius: 40px;
      padding: 30px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .kontak-info h3, .ppdb-form h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--dark-text);
    }
    .info-detail {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.1rem;
    }
    .info-item i {
      width: 35px;
      font-size: 1.5rem;
      color: var(--primary);
    }
    .form-group {
      margin-bottom: 20px;
    }
    input, select, textarea {
      width: 100%;
      padding: 12px 18px;
      border-radius: 60px;
      border: 1px solid #ddd;
      font-family: 'Quicksand', sans-serif;
      font-size: 1rem;
      background: #fefcf5;
    }
    textarea {
      border-radius: 25px;
    }
    .btn-submit {
      background: var(--secondary);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      width: 100%;
      font-size: 1rem;
    }
    .btn-submit:hover {
      background: #5ab89b;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #2D3E40;
      color: #f0f0f0;
      text-align: center;
      padding: 25px 0;
      border-radius: 35px 35px 0 0;
      margin-top: 40px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 850px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
      }
      .nav-links.active {
        display: flex;
      }
      .hero-text h2 {
        font-size: 2rem;
      }
      .hero-image i {
        font-size: 7rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 600px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      .dual-column {
        flex-direction: column;
      }
      .kontak-ppdb {
        border-radius: 30px;
      }
    }

    /* floating decoration */
    .floating-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--primary);
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      cursor: pointer;
      z-index: 99;
      transition: all 0.2s;
    }
    .floating-icon i {
      font-size: 28px;
      color: white;
    }
    .floating-icon:hover {
      background: var(--accent);
      transform: scale(1.05);
    }