/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #0f172a;
  color: #e5e7eb;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* HEADER */
.header {
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.brand img {
  height: 40px;
}

/* BUTTONS */
.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.btn {
  background: #1e293b;
  color: #fff;
}

.btn-primary {
  background: #22c55e;
  color: #000;
}

.btn-secondary {
  background: #3b82f6;
  color: #fff;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-text {
  margin-bottom: 15px;
  color: #cbd5f5;
}

.hero-list {
  margin: 20px 0;
  list-style: none;
}

.hero-list li {
  margin-bottom: 8px;
}

.cta-group {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  padding: 10px 0;
  color: #94a3b8;
}

.breadcrumbs a {
  color: #94a3b8;
  text-decoration: none;
}

/* SECTIONS */
section {
  padding: 50px 0;
}

h2 {
  margin-bottom: 15px;
  font-size: 26px;
}

h3 {
  margin: 15px 0 10px;
  font-size: 20px;
}

p {
  margin-bottom: 12px;
}

/* TOC */
.toc details {
  background: #020617;
  padding: 15px;
  border-radius: 10px;
}

.toc a {
  display: block;
  margin: 5px 0;
  color: #38bdf8;
  text-decoration: none;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #1e293b;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

table th,
table td {
  border: 1px solid #1e293b;
  padding: 10px;
  text-align: left;
}

table th {
  background: #020617;
}

/* LISTS */
ul {
  margin: 10px 0 15px 20px;
}

ol {
  margin: 10px 0 15px 20px;
}

/* REVIEWS */
#reviews div {
  background: #020617;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* FAQ */
.faq div {
  margin-bottom: 15px;
}

/* CTA */
.cta {
  background: #020617;
  text-align: center;
}

.cta h2 {
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: #020617;
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 20px 0;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #94a3b8;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner {
      flex-direction: column;
  }

  .cta-group {
      flex-direction: column;
  }
}

/* LINKS */
a {
  color: #38bdf8;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

/* underline animation */
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.2s ease;
}

a:hover::after {
  width: 100%;
}

/* hover effect */
a:hover {
  color: #7dd3fc;
}
/* content links */
p a {
  color: #22c55e;
  font-weight: 500;
}

p a::after {
  background: #22c55e;
}
/* nav links */
.nav a,
.footer a,
.breadcrumbs a {
    color: #94a3b8;
}

.nav a::after,
.footer a::after,
.breadcrumbs a::after {
    display: none;
}
/* nav links */
.nav a,
.footer a,
.breadcrumbs a {
    color: #94a3b8;
}

.nav a::after,
.footer a::after,
.breadcrumbs a::after {
    display: none;
}
.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}
.hero {
  padding: 60px 0;
  overflow: hidden;
}