/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
body {
  line-height: 1.6;
  color: #2d3748;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sections */
section {
  scroll-margin-top: 80px;
}

/* Buttons */
button,
a.button {
  display: inline-block;
  text-decoration: none;
  background-color: #10b981;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

button:hover,
a.button:hover {
  background-color: #059669;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Transitions */
.transition {
  transition: all 0.3s ease-in-out;
}

.transform {
  transform: scale(1);
}

.transform:hover {
  transform: scale(1.02);
}

/* Background Gradients */
.bg-gradient-to-r.from-emerald-50.to-green-50 {
  background-image: linear-gradient(to right, #ecfdf5, #f0fdf4);
}

/* Text Colors */
.text-emerald-600 {
  color: #059669;
}

.text-emerald-100 {
  background-color: #d1fae5;
}

.text-emerald-400 {
  color: #4ade80;
}

/* Border Colors */
.border-emerald-600 {
  border-color: #059669;
}

/* Hover Effects */
.hover\:bg-emerald-50:hover {
  background-color: #f0fdf4;
}

.hover\:bg-emerald-200:hover {
  background-color: #bbf7d0;
}

.hover\:text-emerald-800:hover {
  color: #047857;
}

/* Flexbox & Grid */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Spacing */
.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Rounded */
.rounded {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* Hidden */
.hidden {
  display: none;
}

/* Fixed Header */
.fixed.top-0.left-0.right-0.z-50 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

/* Scroll Behavior */
html {
  scroll-behavior: smooth;
}