/* Base Styles */

:root {
  --primary: #ff6a14;    /* Embark Orange */
  --accent: #002f5f;     /* Embark Navy */
  --secondary: #f3f4f6;
  --muted: #5C6062;
  --text: #1f2937;
  --card-bg: #ffffff;
  --btn-primary: #ff6a14;
  --btn-secondary: #f3f4f6;
  --btn-text: #ffffff;
  --border-color: rgba(0, 47, 95, 0.12);
  --radius: 16px;
}

/* Global Box Sizing */
*, *::before, *::after { box-sizing: border-box; }

body {
  /* Updated to match your original index.html font stack perfectly */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--text);
}

/* Typography */
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; color: var(--accent); }
p { margin: 0; color: var(--muted); }
a { text-decoration: none; color: var(--primary); transition: 0.3s; }

/* Layout Helpers */
.wrap { width: 90%; max-width: 1120px; margin: 0 auto; }
.section { padding: 80px 0; }

/* Header & Logo Integration */
header {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px; 
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
}

nav ul li a {
  font-weight: 600;
  color: var(--accent);
  text-transform: none; 
}

nav ul li a:hover, nav ul li a.active { color: var(--primary); }

/* Re-introducing your specific button styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary { background-color: var(--btn-primary); color: #fff; }
.btn.primary:hover { background-color: #e55a00; }

.btn.ghost {
  border: 2px solid var(--accent);
  color: var(--accent);
}

/* Footer Section */
footer {
  background-color: var(--accent);
  padding: 60px 0;
  color: #fff;
}

footer p { color: rgba(255,255,255,0.7); margin-top: 20px; }