*{
    margin:10px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}

.hero{
    min-height: 30vh;
    background-color:white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content{
    text-align: center;
}

.content h1{
    margin-bottom: 20px;
}

.content p{
    margin-bottom: 40px;
}

.content .btn{
    font-size: 18px;
    padding: 10px 20px;
    background-color: darkgoldenrod;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease;
}

.content .btn:hover{
    background-color: black;
}

.container{
    width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}

.card{
    position: relative;
}

.badge{
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: #fff;
  color:darkred;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.card{
    background-color: #fff;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
}

.card img{
    width: 97%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: 10px;
}

.card .content{
    padding: 15px;
}

.card .content h3{
    font-size: 26px;
    margin-bottom: 10px;
}

.card .content p{
    font-size: 17px;
    color: #666;
    line-height: 1.3;
}

.full-image{
    display: block;
    width: 100%;
    height: auto;
}

.price-list {
  display: flex;
  gap: 100px;
  background: #fff;
  justify-content: center;
  padding: 50px 80px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category h2 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: left;
}

.category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.category li span:last-child {
  font-weight: 600;
}

@media (max-width: 768px) {
  .price-list {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }
}

/* FOOTER SECTION */
footer {
  width: 100%;
  background: #fff;
  margin-top: 60px;
  padding: 50px 0 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 150px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  display: flex;
  justify-content: space-between;
  width: 220px;
  font-size: 15px;
  padding: 4px 0;
}

.footer-section p {
  color: #555;
  line-height: 1.5;
  font-size: 15px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 18px;
  width: 35px;
  height: 35px;
  margin-right: 8px;
  border-radius: 2px;
  line-height: 35px;
  text-align: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #555;
}

.copyright {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .price-list {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-section li {
    width: 100%;
    justify-content: space-between;
  }
}