:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-primary: #26C6DA; /* Updated to match brand cyan */
  --color-secondary: #E30A17; /* Updated to match brand red */
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #cbd5e1;
  --max-width: 1200px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.site-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-btn {
  text-decoration: none;
  background: var(--color-secondary);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.mobile-menu-dropdown {
  display: none;
  background: white;
  border-top: 1px solid #eee;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu-dropdown.active {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .mobile-menu-btn { display: block; }
  .container { padding: 0 1rem; }
}

/* Content Styles */
.hero {
  background: linear-gradient(135deg, #26C6DA 0%, #00acc1 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  border: 1px solid #f1f5f9;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  color: #1e293b;
  margin-top: 0;
}

.card h2 a {
  text-decoration: none;
  color: inherit;
}

.breadcrumbs {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: white;
  text-decoration: underline;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 3rem 2rem;
  margin-top: auto;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h3, .footer-col h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 3rem;
  padding-top: 2rem;
  color: #888;
  font-size: 0.9rem;
}
