:root {
  --primary: #00c8ff;      /* warna utama logo SEL */
  --primary-dark: #0096c7;
  --background: #f7f9fb;
  --surface: #ffffff;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: var(--background);
  color: var(--text-main);
  line-height: 1.7;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

header h2 {
  color: var(--primary-dark);
  font-weight: 600;
}

nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  margin-right: 18px;
  font-size: 15px;
}

nav a:hover {
  color: var(--primary);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}

/* Headings */
h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

p {
  font-size: 15px;
  color: var(--text-main);
}

/* Product Grid */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

footer p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

footer a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 15px;
}

footer a:hover {
  color: var(--primary);
}

/* Responsive tweak */
@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  nav a {
    display: inline-block;
    margin-bottom: 8px;
  }
}