/* Base Styling */
body {
    background-color: #222222;
    color: #F5F5F5;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Headings */
h1, h2, h3 {
    color: #00E0FF;
    margin: 20px 0;
}

/* Links */
a {
    color: #00E0FF;
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    color: #33EBFF;
}

/* Container for content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #1a1a1a;
    color: #F5F5F5;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.card h2 {
    color: #00E0FF;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #ccc;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,224,255,0.4);
}

.card:hover h2,
.card:hover p {
    transform: scale (1.50):
    transition: transform 0.2s ease-in-out:
}

/* Hero Card Container */
.hero-card {
    display: block;
    background-color: #1a1a1a;
    color: #F5F5F5;
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-card h2 {
    color: #00E0FF;
    margin-bottom: 20px;
    font-size: 28px;
}

.hero-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,224,255,0.5);
}


/* Footer */
footer {
    margin-top: 50px;
    padding: 20px;
    font-size: 14px;
    color: #999;
}
/* Brand Kicker (shared across site)  */
.kicker {
  color: #00E0FF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: bold;
}

/* CTA Bar */
.cta-bar {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  background: #2a2a2a;
  border: 1px solid #333;
  color: #F5F5F5;
  transition: transform .15s, box-shadow .15s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,224,255,.25);
}

.btn-primary {
  background: #00E0FF;
  color: #0d0d0d;
  border: 0;
}

.btn-primary:hover {
  color: #0d0d0d;
  box-shadow: 0 14px 28px rgba(0,224,255,.35);
}

.back {
  margin-top: 32px;
  font-size: 14px;
}

.back a {
  color: #00E0FF;
  text-decoration: none;
}

.back a:hover {
  text-decoration: underline;
}

