
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
.info-card {
  background: var(--background-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  min-height: 220px;
  color: var(--text-primary);
}
.info-card:hover {
  box-shadow: 0 4px 24px rgba(102,126,234,0.18);
}
.info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  background: var(--gradient-primary);
  border-radius: 50%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(102,126,234,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}
.info-card h3 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
/* App grid and card thumbnail styling */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 700px;
}
.app-card {
  background: var(--background-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  min-height: 160px;
  max-width: 200px;
  color: var(--text-primary);
  text-align: center;
}
.app-card:hover {
  box-shadow: 0 4px 24px rgba(102,126,234,0.18);
}
.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.app-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.app-card p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.app-meta {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.btn {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
}
