.hero {
  text-align: center;
  padding: 20px 20px;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 20px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 20px 10px;
  margin: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #0077b5; /* LinkedIn blue */
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

body {
  margin: 0;
  background: linear-gradient(120deg, #232526, #414345);
  color: white;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 160px;
}

.site-footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8); /* Slight transparency */
  font-size: 0.9rem;
  margin-top: auto; /* Pushes footer to bottom */
  position: fixed; bottom: 0; width: 100%;
}
.site-footer a {
  color: white;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.products {
  text-align: center;
  padding: 10px 20px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  background: #0077b5;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.product {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.product-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
}

.privacy-section {
  margin: 20px auto;
  max-width: 700px;
}

.privacy-content {
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}
