/* style.css */
@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto.ttf') format('truetype');
  font-weight: 100 900;   
  font-stretch: 75% 100%; 
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400; 
  margin: 0;
  padding: 0;
  background: #f9fcff;
  color: #333;
  line-height: 1.6;
}

header {
  background: #036b73;
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem 1rem;
}

h2 {
  margin-top: 2.5rem;
  color: #036b73;
  font-size: 1.8rem;
}

.buckets {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.bucket {
  flex: 1 1 45%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bucket:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.bucket h3 {
  color: #036b73;
  margin-top: 0;
  font-size: 1.4rem;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

ul li:last-child {
  border-bottom: none;
}

footer {
  text-align: center;
  font-size: 1rem;
  color: #333;
  background: #e0f0f4;
  padding: 2rem 1rem;
}

footer p {
  margin: 0;
}

.continue-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #036b73;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.continue-link:hover {
  background: #036b73;
  transform: translateY(-3px);
}

.continue-link:active {
  transform: translateY(1px);
}
