@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f1216;
  color: #e6e6e6;
  line-height: 1.6;
}

/* Navigation */
nav {
  background: rgba(15,18,22,0.95);
  border-bottom: 1px solid #1e242c;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #e6e6e6;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #2f81f7;
}

/* Hero */
.hero {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,18,22,0.85),
    rgba(15,18,22,0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding-top: 20vh;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  color: #9aa4ad;
}

.hero-content span {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border-left: 4px solid #f5c400;
  background: #161b22;
  font-weight: 600;
}

/* Content Sections */
.content {
  max-width: 1100px;
  margin: auto;
  padding: 90px 40px;
}

.content h1,
.content h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.content p {
  color: #9aa4ad;
  font-size: 1.1rem;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

ul li {
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
}

ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #2f81f7;
  font-weight: bold;
}

/* Image Section */
.image-section {
  background: #161b22;
  padding: 60px 0;
}

.image-section img {
  max-width: 1100px;
  width: 100%;
  display: block;
  margin: auto;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  background: #0f1216;
  border-top: 1px solid #1e242c;
  text-align: center;
  padding: 40px;
  color: #9aa4ad;
  font-size: 0.9rem;
}