/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #F5E9D3;
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* Header */
header {
  background-color: #0A6E6A;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Navigation */
nav {
  background-color: #0F8F89;
  text-align: center;
  padding: 16px 0;
}

nav a {
  color: white;
  font-size: 1.2rem;
  padding: 8px 16px;
  margin: 0 20px;
  transition: color 0.3s;
}

nav a:hover {
  color: #F5E9D3;
  text-decoration: underline;
}

/* Hero Section */
section {
  text-align: center;
  padding: 25px 2px;
}

section h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #0A6E6A;
  margin-bottom: 1px;
}

section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1px;
}

button {
  background-color: #0A6E6A;
  color: white;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0F8F89;
  cursor: pointer;
}

/* Quick Navigation Cards */
section.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

section.grid div {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #d5cbb6;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

section.grid div:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

section.grid h3 {
  font-size: 1.8rem;
  color: #0A6E6A;
  margin-bottom: 15px;
}

section.grid p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

section.grid a {
  color: #0A6E6A;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

section.grid a:hover {
  color: #0F8F89;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #0A6E6A;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  font-size: 1rem;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }

  nav a {
    font-size: 1rem;
  }

  section.grid {
    grid-template-columns: 1fr;
  }

  section.grid div {
    padding: 20px;
  }

  section h2 {
    font-size: 2.5rem;
  }

  button {
    font-size: 1rem;
  }
}
