/* BASE */
body {
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* LAYOUT */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* TYPOGRAPHY */
h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.highlight {
  color: #ff6a3d;
}

p {
  color: #333;
  font-size: 1.1rem;
}

/* CTA BUTTON */
.cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #ff6a3d;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* SECTIONS */
.section {
  margin-top: 80px;
}

/* CARD */
.card {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

/* LINKS */
a {
  color: #ff6a3d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* SMALL TEXT */
.subtle {
  font-size: 0.9rem;
  color: #777;
}

/* NAVIGATION */
nav {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

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

nav .logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
}

nav .logo .highlight {
  color: #ff6a3d;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #666;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #ff6a3d;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  padding: 40px 0;
  margin-top: 100px;
}

footer .container {
  padding: 0 20px;
}

footer p {
  font-size: 0.9rem;
  color: #777;
  margin: 10px 0;
}

footer .footer-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

footer .footer-links a {
  color: #666;
  font-size: 0.85rem;
}

footer .footer-links a:hover {
  color: #ff6a3d;
}

/* ADDITIONAL COMMON STYLES */
/* Box/Card variants */
.box {
  background: #f5f5f5;
  padding: 20px;
  margin-top: 20px;
  border-left: 3px solid #ff6a3d;
}

/* Links section */
.links {
  margin-top: 30px;
}

.links a {
  display: block;
  margin: 10px 0;
  color: #ff6a3d;
  text-decoration: none;
  font-weight: bold;
}

/* 404 and special pages */
.centered-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  nav .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    gap: 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 40px 20px;
  }
}
