/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 15 2025 | 23:42:26 */
:root {
  --pc-bg: #ffffff;
  --pc-text: #2a2a2a;
  --pc-muted: #6b7280;
  --pc-border: #e5e7eb;
  --pc-accent: #1f2933;
  --pc-max: 1140px;
  --pc-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* RESET LOCAL */
.pc-wrap, .pc-wrap * {
  box-sizing: border-box;
  font-family: var(--pc-font);
}

/* ================= HEADER ================= */
.pc-header {
  background: var(--pc-bg);
  border-bottom: 1px solid var(--pc-border);
}

.pc-header-inner {
  max-width: var(--pc-max);
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.pc-brand strong {
  color: var(--pc-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.pc-brand span {
  color: var(--pc-muted);
  font-size: 12px;
}

.pc-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.pc-nav a {
  text-decoration: none;
  font-size: 13px;
  color: var(--pc-muted);
}

.pc-nav a:hover {
  color: var(--pc-text);
}

.pc-cta {
  padding: 8px 14px;
  border: 1px solid var(--pc-accent);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pc-accent);
  text-decoration: none;
}

.pc-cta:hover {
  background: var(--pc-accent);
  color: #ffffff;
}

/* ================= FOOTER ================= */
.pc-footer {
  margin-top: 40px;
  background: var(--pc-bg);
  border-top: 1px solid var(--pc-border);
}

.pc-footer-inner {
  max-width: var(--pc-max);
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  gap: 16px;
}

.pc-footer p,
.pc-footer a {
  font-size: 12px;
  color: var(--pc-muted);
  text-decoration: none;
}

.pc-footer a:hover {
  color: var(--pc-text);
}

.pc-footer-copy {
  border-top: 1px solid var(--pc-border);
  padding: 12px 16px;
  font-size: 11px;
  color: var(--pc-muted);
  max-width: var(--pc-max);
  margin: 0 auto;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pc-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pc-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}

