@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f7fcfa;
  color: #181a1b;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.header-bar {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 32px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px 16px 32px;
  background: #fff;
  border-radius: 32px 32px 28px 28px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10), 0 2px 16px #005b0622;
  position: relative;
  z-index: 20;
}
.logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.bookmark-btn {
  background: #005b06;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 1.01rem;
  font-family: inherit;
  font-weight: 600;
  box-shadow: 0 2px 8px #005b0622;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  height: 52px;
  display: flex;
  align-items: center;
}
.bookmark-btn:hover {
  background: #fff;
  color: #005b06;
  box-shadow: 0 4px 16px #005b0666;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 16px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #181a1b;
  text-align: center;
}
.subtitle {
  font-size: 1.18rem;
  color: #555;
  margin-bottom: 18px;
  font-weight: 400;
  text-align: center;
}
.tools-section {
  width: 100%;
  margin-top: 0;
  background: none;
  text-align: center;
}
.tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.2rem;
  justify-content: center;
  margin-top: 0;
}
.tool-card {
  background: #fff;
  color: #181a1b;
  border-radius: 24px;
  padding: 38px 22px 30px 22px;
  min-width: 120px;
  box-shadow: 0 6px 32px #005b0611, 0 1.5px 8px #fff2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.18rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, color 0.18s, border 0.18s;
  border: 1.5px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}
.tool-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px #005b0622, 0 2px 12px #fff3;
  color: #005b06;
  border: 1.5px solid #005b0622;
}
.tool-icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: #005b06;
  transition: color 0.18s;
}
.tool-card:hover .tool-icon {
  color: #181a1b;
}
@media (max-width: 1100px) {
  .header-bar { max-width: 98vw; width: 98vw; padding: 12px 2vw 10px 2vw; }
  .logo { height: 42px; width: auto; }
  .bookmark-btn { font-size: 0.97rem; padding: 6px 12px; height: 42px; }
}
@media (max-width: 700px) {
  .header-bar { max-width: 99vw; width: 99vw; padding: 6px 2vw 6px 2vw; margin: 12px auto 18px auto; border-radius: 18px 18px 14px 14px; }
  .logo { height: 34px; width: auto; }
  .bookmark-btn { font-size: 0.89rem; padding: 4px 8px; height: 34px; }
  .container { padding: 8px 4vw 18px 4vw; }
  .tools-list { grid-template-columns: 1fr; gap: 1.2rem; }
}

.fade-in {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
} 