/* ----------------------------------------
   1. Reset and Base Styles
---------------------------------------- */

/* General Reset */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography Reset */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* General Link Styling */
a {
  color: #04ace5; /* Default link color */
  text-decoration: none; /* Remove underline by default */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Link Hover State */
a:hover {
  color: #ff5a5a; /* Hover color */
  text-decoration: underline; /* Add underline on hover */
}

/* Link Focus State (for accessibility) */
a:focus {
  outline: 2px solid #ff5a5a; /* Outline for focused links */
  outline-offset: 2px;
}

/* Visited Links */
a:visited {
  color: #03508f; /* Color for visited links */
}

/* General Container */
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1em;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}
