* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fefefe;
  color: #111;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.main-header {
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.logo-area img {
  width: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #aaa;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #222;
  overflow: hidden;
  max-height: 0;
  z-index: 999;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  max-height: 300px;
}

.mobile-nav.active .mobile-nav-inner {
  opacity: 1;
}

.mobile-nav a {
  color: white;
  padding: 1rem;
  border-bottom: 1px solid #444;
  text-align: center;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero-bricks.jpg') center/cover no-repeat;
  min-height: 90vh;
  text-align: center;
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: relative;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #ddd;
}

/* Info Section */
.content-block {
  padding: 4rem 8rem;
  background: #fff;
  color: #111;
}

.content-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-block p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background: #f9f9f9;
  padding: 1.5rem;
  flex: 1;
  min-width: 250px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.badge-img {
  margin: 2rem auto;
  display: block;
  max-width: 180px;
  height: auto;
}

/* Footer */
.footer {
  background: #111;
  color: #eee;
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer a {
  color: #eee;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .content-block {
    padding: 2rem;
  }

  .features {
    flex-direction: column;
  }
}
