/* css/styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #1e1e2f;
  color: white;
}

.nav-links li {
  display: inline;
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #e3f2fd;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}

.tools-preview {
  padding: 40px 20px;
  text-align: center;
}

.tool-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tool-card {
  padding: 20px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 8px;
  width: 200px;
  text-decoration: none;
  color: #333;
}

.footer {
  padding: 20px;
  text-align: center;
  background: #1e1e2f;
  color: white;
}
