body, html {
    margin: 0;
    padding: 0px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
  
} 

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #22e288;
}

.card {
    width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 10px;
}

.item-name {
    margin: 10px 0 5px 0;
    color: #ecff5c;
}

.item-detail {
    color: #ecff5c;
    font-size: 14px;
}

.detail-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
}

.detail-button:hover {
    background-color: #0056b3;
}

.detail-container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.detail-image {
    width: 50%;
    height: auto;
    margin: 20px 0;
}

.back-button {
    padding: 10px 20px;
    background-color: #017bff;
    color: white;
    border: none;
    cursor: pointer;
}

.back-button:hover {
    background-color: #0056b3;
}

.header, .footer {
    text-align: center;
    padding: 20px 0;
    background-color: #000000;
    color: white;
}

.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: #5e7d6f;
}

.hero h1 {
    margin-bottom: 20px;
    color: #ffffff;
}

.herop {
  color: #fe76f3;
}

.herop1 {
    color: #6a957d;
}

.herop2 {
    color: #22e288;
}
.custom-checkbox {
  position: relative;
  display: inline-block;
  padding-left: 25px; 
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  user-select: none; 
}

.custom-checkbox input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px; 
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}