body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 18px 0;
  position: relative;
  z-index: 10;
}
.logo-box {
  border: 2px solid #111;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 2rem;
  margin-right: 14px;
  letter-spacing: -2px;
}
.logo-text {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -2px;
}
nav {
  font-size: 1.1rem;
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 6px 0;
  transition: color 0.18s;
}
nav a:hover {
  color: #1985ff;
  text-decoration: underline;
}

/* Hamburger basics */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  height: 32px;
  width: 40px;
  margin-left: 18px;
  z-index: 11;
}
.nav-toggle-label span {
  display: block;
  height: 4px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  margin-bottom: 6px;
  transition: 0.3s;
}
.nav-toggle-label span:last-child { margin-bottom: 0; }

/* HERO, SECTIONS, ETC - Copy over your previous content styles as needed */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
  margin-bottom: 42px;
}
.hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}
.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 34px 30px 34px;
  background: linear-gradient(0deg,rgba(0,0,0,0.78) 0%,rgba(0,0,0,0.30) 85%,transparent 100%);
  color: #fff;
}
h1 {
  font-size: 2.6rem;
  margin: 0 0 14px 0;
  font-weight: 900;
}
main section { margin-bottom: 56px; }
h2 { font-size: 2rem; margin-bottom: 14px; font-weight: 800; }
h3 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 800; }
.builds {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
}
.builds-img {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  max-width: 380px;
  width: 100%;
  object-fit: cover;
}
.builds-text { flex: 1; min-width: 250px; }
ul { margin: 10px 0 14px 20px; }
li { margin-bottom: 5px; }
.process-grid { display: flex; gap: 28px; flex-wrap: wrap; }
.process-step { flex: 1 1 200px; margin-bottom: 18px; }
.contact-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #181818;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background .22s;
}
.contact-btn:hover { background: #3d3d3d; }

/* MOBILE NAV & LAYOUT */
@media (max-width: 700px) {
  .container { padding: 10px; }
  .logo-text { font-size: 1.3rem; }
  .hero-text { padding: 14px 14px 18px 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  header {
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 0;
  }
  nav {
    position: absolute;
    top: 72px;
    right: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    padding: 28px 26px 18px 26px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    z-index: 10;
    min-width: 160px;
    font-size: 1.12rem;
  }
  .nav-toggle:checked + .nav-toggle-label + nav {
    display: flex;
  }
  .nav-toggle-label {
    display: flex;
  }
  .builds { flex-direction: column; }
}
/* Always hide nav by default at mobile width */
@media (max-width: 700px) {
  nav { display: none; }
}
