/* styles.css */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafb;
    margin: 0;
    padding: 0px;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    color: #777;
    margin-bottom: 40px;
    font-size: 1rem;
  }
  
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .tool-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 300px;
    margin: 10px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  
  .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tool-card h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tool-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.tool-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.tool-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.tool-link:hover {
  text-decoration: none;
}