.button-m {
  display: block;
  margin: 10px auto;
  width: 95%; 
  max-width: 400px; 
  height: auto;
  min-height: 70px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(335deg, #4f8023, #98e83b);
  box-shadow: -2px 12px 10px 0px rgb(0 0 0 / 43%);
  border-radius: 50px;
  font-family: 'Inter', -apple-system, system-ui, sans-serif; 
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  padding: 20px 10px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

body {
  padding-top: 60px;
  margin: 0;
  font-family: sans-serif;
  height: 100vh;
}

.top-bar {
  background-color: white;
  color: black;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.top-bar .text {
  flex: 1;
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.burger-menu {
    margin-right: 20px;
    cursor: pointer;
    display: inline-block;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.burger-menu .menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.burger-menu .menu a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.burger-menu .menu a:hover {
  background-color: #f0f0f0;
}

.burger-menu.active .menu {
  display: block;
}

.burger-menu.active .burger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .burger-icon span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.button-small {
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding: 5px 10px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  text-decoration: none;
  background-color: #F3DA0B;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  height: 25px;
  transform: scale(1.7);
  position: relative;
  left: -40px;
  background: linear-gradient(to right, #254011, #4b7d1f, #8bc34a, #cddc39, #f0f4c3);
  background-size: 300% 100%;
  animation: gradientAnimation 8s linear infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.right-align {
  text-align: right;
  padding-right: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar .button-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-left: 80px;
}

.content {
  margin-top: 80px;
  padding: 20px;
}