/* Legal Section */
.legal-section {
  background: #f1f1f1;
  padding: 60px 20px;
  text-align: center;
}

.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.legal-section p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

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

.legal-links .cta-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.legal-links .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Footer */
 footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info h3 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info span {
  color: #667eea;
  margin-right: 8px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
}

.contact-info a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
