
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fdfaf4;
      color: #2f3e2e;
    }
    main{
      padding-top: 80px;
    }
    html{
      scroll-behavior: smooth;
    }

  section{
    min-height: 100vh;       /*Tiap section satu layar penuh*/  
    padding: 100px 20px;
    box-sizing: border-box;
    scroll-margin-top: 80px; /*kalau ada nav bar fixed*/
    display: flex;
    flex-direction: column;
    /* tengahin konten vertical */
    justify-content: center;
  
  }
  section h1{
    font-size: 2rem;
    text-align: center;
    
  }

    header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5rem;
    background-color: #1a9b4b;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    
    z-index: 1000;
    box-sizing: border-box;
    }
    .logo {
      font-size: 2rem;
      font-weight: bold;
    }
    .hamburger{
      display: none;
      font-size: 2rem;
      cursor: pointer;
      color: white;
    }
    .nav-desktop{
      display: flex;
      gap: 1rem;
    }
    .nav-desktop a {
      text-decoration: none;
      color: white;
      font-weight: bold;
    }
    .nav-mobile{
    position: fixed;
    top: -80%;
    left: 0;
    right: 0;
    background-color: #1a9b4b;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: top 0.6s ease;
    z-index: 999;
    display: none;
    padding: 1rem;
    }
    .nav-mobile.active{
      display: flex;
      top: 0;
    }
    .nav-mobile a,
    .nav-mobile {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    }
    .nav-mobile a:hover{
      color: #ddd;
      transform: scale(1.05);
      transition: 0.2s ease-in-out;
    }
    .close-btn{
      position: fixed;
      align-self: flex-end;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      
    }

    .template-frame {
      border: 2px solid 14cf5c;
      border-radius: 8px;
      margin: 1rem 0;
      padding: 1rem;
      background-color: #eef0e5;
    }
    .template-link {
      display: block;
      margin-top: 0.5rem;
      color: #1a9b4b;
    }
    .contact-link {
      display: block;
      margin: 1rem 0;
      color: #1a9b4b;
      font-weight: bold;
    }
    
    /* home area */
    .home-center{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      box-sizing: border-box;
      margin-top: 2%;
      padding: 5rem;
    }
    .container-wrapper{
      
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .welcome {
      font-size: 50px;
      font-family: "Titan One", sans-serif;
      
      
    }
    #gethint{
      color: #1a9b4b;
      font-size: 100px;
      margin-top:0.5rem ;
      margin-bottom: 0.0rem;
      letter-spacing: 10px ;
      font-family: 'Libre Baskerville', serif;
      font-weight: 700;
      
    }
    .home-center h3{
      margin-top: 0rem;
      letter-spacing: 4px ;
      color: #1a9b4b;
      font-family: 'Libre Baskerville', serif;
      
    }
    .home-center p{
      margin-top: 3rem;
      font-size: 20px;
    }

    .container{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap:0.5rem;
      margin-top: 2rem;

    }
    .keunggulan{
      flex: 1 1 200px;
      border: 2px solid #96dab0;
      padding: 1rem;
      border-radius: 10px;
  
      color: #3c423e;
      box-shadow: 2px 2px 10px rgba(155, 216, 168, 0.2);
      max-width: 225px;
      margin: 20px auto;
    }
    .keunggulan h1{
      text-align: center;
      color: #1a9b4b;
      font-size: 20px;
    }
    .keunggulan h2{
      text-align: center;
      color: #696262;
      font-size: 16px;
    }

    .template-button {
      margin-top: 2rem ;
      margin-bottom: 2rem;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      border: none ;
      background-color: #1a9b4b;
      color: white;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);   
      transition: background-color 0.3s ease; 
    }

    .template-button:hover{
      background-color: #157d3a;
    

    }
    .template-frame{
      width:100%;
  height: 100%;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  flex-shrink: 0;          /* Biar gak mengecil saat overflow */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;   
    }
    .template-frame{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Biar gambarnya ngepas tanpa keluar */
  border-radius: 10px;
    }


    @media(max-width:768px){
    section{
      padding: 100px 16px;
    }
    section h1{
      color: #333333;
      font-size: 1.5rem;

    }
    section p{
      font-size: 0.95rem;
    }
    header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1a9b4b;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
 
    }
    .home-center{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      box-sizing: border-box;
      margin-top: 53%;
      padding: 2rem;


    }
    .home-center h1{
      color: #000000;
      font-size: 25px;
      
      
    }
    #gethint{
      color: #1a9b4b;
      font-size: 80px;
      margin-top: 0.5rem ;
      letter-spacing: 5px ;
      font-family: 'Libre Baskerville', serif;
      font-weight: Bold;
      
    }
    .home-center h3{
      margin-top: 0rem;
      letter-spacing: 1px ;
      color: #1a9b4b;
      font-family: 'Libre Baskerville', serif;
      font-weight: 700;
      
    }
    .home-center p{
      margin-top: 3rem;
      font-size: 15px;
    }
      .nav-desktop{
      display: none;
    }
    .hamburger{
      display: block;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      
    }
    .nav-mobile{
      display: flex;
    
      
    }
  }