body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth; /* For smooth scrolling on anchor links */
}

:root {
  --primary: #064069; /* A teal-like color for primary elements */
  --secondary: #5ec6f2; /* For secondary elements */
  --accent: #E0E7FF; /* A light indigo for backgrounds */
  --text: #51555c; /* A medium gray for body text */
  --muted: #f0f0f0e6; /* A very light gray */
}

/* Navigation Bar Styles */
nav {
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

nav.scrolled {
  background-color: rgba(255, 255, 255, 0.4); 
  border-color: rgba(6, 64, 105, 0.05);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Hero Section Styles */
.hero-gradient {
  background-image: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

/* Section Styles */
section {
  padding: 4rem 10%;
}

h1, h2, h3 {
  color: var(--primary);
}

.text-muted-foreground {
  color: var(--text);
}

.bg-muted {
  background-color: var(--muted);
}

/* Footer Styles */
footer {
  background-color: var(--primary);
  color: white;
  padding: 2rem 10%;
  text-align: center;
}

/* Button Styles */
button {
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  section {
    padding: 2rem 5%;
  }
}