.menu-container {
    width: 155px;
    margin: 0 auto;
    background-color: #f5f2ed;
    padding: 5px;
    border-radius: 5px;
}

.menu-item {
    display: block;
    width: 168px;
    background-color: #78b54e;
    color: white !important;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 6px;
    padding-top: 7px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    position: relative;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    height: 15px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: #89c75c;
}

.menu-item.active {
    background-color: #5a8c39;
    cursor: not-allowed;
}

.checkbox-style {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 50%;
}

.active .checkbox-style {
    background-color: #2b78e4;
    border-color: #2b78e4;
}

#Banner1{
    border-bottom-right-radius: 15px;
}


footer {
    background-color: #f9f9f9;
    padding: 20px;
    font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #666;
    text-align: center;
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 10px;
  }
  
  .footer-nav a:hover {
    color: #000;
  }
  
  .footer-info p {
    margin: 5px 0;
  }
  
  .footer-info a {
    color: #0066cc;
    text-decoration: none;
  }
  
  .footer-info a:hover {
    text-decoration: underline;
  }
  