* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Hero */
.hero-placeholder {
  width: 100%;
  height: 320px;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* Slogan */
.slogan {
  text-align: center;
  padding: 60px 24px;
}

.slogan h2 {
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.btn-black {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-black:hover {
  background: #333;
}

/* About */
.about {
  text-align: center;
  padding: 60px 24px;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

/* Contact */
.contact {
  text-align: center;
  padding: 60px 24px;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-info {
  margin-bottom: 32px;
  color: #444;
}

.contact-info p {
  margin: 2px 0;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #fff, #2563eb);
  padding: 40px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  color: #1a1a1a;
  display: flex;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.6;
}

.footer p {
  font-size: 0.8rem;
  color: #333;
}

/* Responsive */
@media (max-width: 640px) {
  .navbar-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-placeholder {
    height: 200px;
  }

  .about h2, .contact h2 {
    font-size: 1.6rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}