.tools-page {
  padding: 60px 0;
  min-height: calc(100vh - 70px - 300px);
  background-color: var(--gray-100);
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 80px 200px;
}

.page-header h1 {
  color: var(--primary-color);
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-header .subtitle {
  color: var(--gray-500);
  font-size: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tool-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tool-icon i {
  font-size: 40px;
  color: var(--white);
}

.tool-card h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.tool-card p {
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.8rem;
  }

  .page-header .subtitle {
    font-size: 1.2rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tool-card {
    padding: 30px 20px;
  }

  .tool-icon {
    width: 80px;
    height: 80px;
  }

  .tool-icon i {
    font-size: 32px;
  }

  .tool-card h3 {
    font-size: 1.5rem;
  }

  .tool-card p {
    font-size: 1rem;
  }
}
