/* ===== NAVIGATION ===== */
nav {
  display: flex;
  gap: 22px;
}

nav a {
  position: relative;
  font-weight: 500;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #1e90ff;
  transition: width .3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1e90ff;
  margin: 4px 0;
}

/* ===== IMAGE SECTION ===== */
.image-section {
  display: flex;
  gap: 20px;
  padding: 40px;
}

.image-section img {
  width: 33.33%;
  border-radius: 12px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.image-section img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(30,144,255,.25);
}

/* ===== CONTENT ===== */
.content {
  padding: 70px 40px;
}

.content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-left: 4px solid #1e90ff;
  padding-left: 12px;
}

.content ul {
  list-style: none;
}

.content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.content ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #1e90ff;
}

/* ===== FAQ ===== */
details {
  background: #111;
  padding: 18px;
  border-radius: 8px;
  margin-top: 12px;
  border: 1px solid rgba(30,144,255,.3);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 28px;
  border-top: 1px solid rgba(30,144,255,.3);
  background: #050505;
  font-size: 0.9rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    disp
