/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #F9FAFB;
  color: #111;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Hide old nav and hero styles, since Tailwind is used instead */
header, .nav, .logo, .hero, .hero-buttons {
  display: none;
}

/* Footer */
footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6B7280;
}

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

/* Add .socials if needed for footer links */
.socials a {
  margin-left: 1rem;
  text-decoration: none;
  color: #007ACC;
  font-weight: 500;
}

.socials a:hover {
  text-decoration: underline;
}
