

/* Header Image */
.container-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 20px auto;
    display: block;
    text-align: center;
}

/* Main Content */
.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px hsla(0, 0.00%, 0.00%, 0.10);
    text-align: justify;
   
}

/* Section Styling */
.info-box {
    background:rgba(254, 195, 0, 0.07);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: justify;
}

.info-box h2 {
  border-left: 4px solid #fec300;
  padding-left: 10px;
  margin-top: 0;
  font-size: 1.5em; 
  color: #444;
}

@media (max-width: 600px) {
  .container,
  .info-box {
    text-align: left;
  }
}

/* Price List */
.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    background: #fff;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}





.included-list {
  list-style: disc inside;
  padding: 0;
  margin: 1em auto;
  max-width: 700px;
  font-size: 1.1rem; /* slightly larger text */
  line-height: 1.8;
  color: #333;
}

.included-list li {
  margin-bottom: 1em; /* adds spacing between items */
}

/* Optional: prettier bullets using pseudo-elements */
.included-list .included li::marker {
  color:rgb(50, 136, 0);
  font-size: 1.2em;
  border: 4px solid rgb(70, 50, 0);
}

.included-list .not-included li::marker {
  color:rgb(136, 25, 0);
  font-size: 1.2em;
  border: 4px solid rgb(70, 50, 0);
}