:root {
  --bg:#FFFDF9;          /* soft peach background */
  --text:#333333;        /* dark gray text */



  --accent:#9260fe;           /* Primary Theme Color – Violet Purple **/
  --accent-hover:#6f3efd;     /* Hover Shade – Deep Royal Purple */

  --card:#FFFFFF;             /*Pure White Card Surface*/
  --border:#bda3ff;           /*Soft Lavender Border */
  --muted:#6B7280;            /*Muted Gray Text*/
}

* { box-sizing:border-box; }
html,body {
  margin:0; padding:0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background:var(--bg); color:var(--text);
}

/* Header */
.site-header {
  background:var(--accent); color:white;
}
.header-inner {
  max-width:1200px; margin:0 auto;
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 24px;
}
.logo { font-weight:700; font-size:22px; color:white; text-decoration:none; }
.menu { list-style:none; margin:0; padding:0; display:flex; gap:20px; }
.menu a { color:white; text-decoration:none; font-weight:500; }
.menu a.active { text-decoration:underline; }

/* Main container */
.container {
  max-width:1200px;
  margin:40px auto;
  padding:0 24px;
}
.hero { text-align:center; margin-bottom:40px; }
.hero h1 { font-size:36px; margin-bottom:10px; color:var(--accent); }
.hero p { color:var(--muted); }

.site-footer,
.footer { background: var(--accent) !important; }
.site-footer .footer-inner,
.footer .footer-inner { text-align: center !important; color: white !important; }

/* Tools Grid */
.grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}



.card {
  background:var(--card);
  border:2px solid var(--border);
  border-radius:12px;
  padding:20px 30px;
  text-align:center;
  transition:all .2s ease;
  box-shadow:0 4px 8px rgba(0,0,0,0.05);
  font-size:18px;
  font-weight:600;
  color:var(--accent);       /*

/* Footer (conflict-proof) */
.footer {
  background: var(--accent) !important;  /* same as header */
  width: 100% !important;
  margin-top: 60px;
  display: block;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 20px 24px !important;
  text-align: center !important;         /* center text */
  color: white !important;               /* readable on accent bg */
}
.footer .footer-inner a {
  color: white !important;               /* footer link matches text */
  text-decoration: underline;
}