
/* Base CSS for Augantio polished static site */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background-color: #ffffff;
  line-height: 1.6;
}

section {
  /* Keep full-width sections; content width is controlled via .container in markup (Tailwind) */
  padding: 60px 20px;
}

h1, h2, h3 {
  color: #1E293B;
  margin-bottom: 20px;
}

button {
  background-color: #0EA5E9;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #0284C7;
}

.card {
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}