/* css/global.css */

/* Simple CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Enable smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Base font settings */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: transparent; /* Changed from #f9f9f9 to transparent */
}

/* Container for consistent width */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Utility classes */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0d47a1;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #1565c0;
}
