@charset "utf-8";

  /*<!-- CSS -->*/
   
        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.7;
            margin: 0;
            padding: 0;
            color: #222;
            background-color: #ffffff;
        }
        .container {
            max-width: 1100px;
            margin: auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #0b3c5d;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
        }
        .section {
            margin-bottom: 40px;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .box {
            border: 1px solid #e0e0e0;
            padding: 20px;
            border-radius: 6px;
            background: #fafafa;
        }
         .disclaimer {
      background: #f8f8f8;
      border-left: 4px solid #e53935;
      padding: 15px;
      font-size: 14px;
      margin-top: 40px;
    }

  
     
     /* ==================================================
   Footer & General Styles
   ================================================== */
.site-footer {
  margin-top: 60px;
  padding: 30px 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer-nav a {
  margin: 0 10px;
  color: #1a73e8;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
/* Tombol CTA */
a.cta-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #1a73e8;
  color: #ffffff !important;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
     
}
/* Alternatf CSS */


.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.condition-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.condition-card h2 {
  margin-top: 0;
  font-size: 20px;
}

.cta-link {
  display: inline-block;
  margin-top: 10px;
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

/*
 ==================================================
   Header (safe migration)
   ================================================== 
   */

.site-header {
  border-bottom: 1px solid #e0e0e0;
  background-color: #ffffff;
}

.header-inner {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.site-logo img {
  height: 200px;
  width: auto;
  display: block;
  
} 

/*Logo Center */

@media (max-width: 768px) {
   .site-header .container {
    align-items: center;

    }
}
    
