/* Reset default margin, padding, and box sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background-color: #fdfdfc;
  color: #21201c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left; /* Aligns text to the left for better readability */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Main Container */
.container {
  max-width: 60ch; /* Ensures optimal readability */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-grow: 1;
  padding: 40px 20px; /* Adds spacing around the content */
}

/* Logo */
.logo {
  width: 180px;
  height: auto;
  display: block;
  margin-top: 48px;
  margin-bottom: 16px;
}

/* Typography */
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #21201c;
}

/* Links */
.link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #2b5d7f;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.link:hover {
  color: #1f4a66;
}

/* Callout Text */
.callout {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #21201c;
}

/* Team Info */
.team {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #21201c;
}

/* Links Section (Previously Footer) */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #9a9a94;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #76766f;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social i {
  font-size: 20px;
  color: #9a9a94;
  transition: color 0.3s ease-in-out;
}

.footer-social i:hover {
  color: #76766f;
}
