#persbox {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap onto the next line */
    justify-content: center; /* Align cards in the center horizontally */
    align-items: flex-start; /* Align cards at the start vertically */
}
.cemedata {
    /* Styles for cemedata */
    margin-bottom: 20px; /* Adjust margin as needed */
    width: 100%; /* Make sure it spans the width of the container */
    text-align: center;
}

.card {
    /* Styles for cards */
    width: 300px;
    margin: 10px;
    background-color: #ECF1F6;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    overflow: hidden;
    padding: 10px;
    min-width: 300px;
    font-size: 1em;
}

.card-title {
    /* Styles for card titles */
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: white;
    margin: 0;
    font-size: 2em; 
}

.card-title-box {
    /* Styles for card title boxes */
    background-color: #2E86C1;
    color: white;
    padding: 5px 0;
    border-radius: 10px;
    margin: -10px;
}

.price-box h3{
    font-size: 1.7em; 
}
img[alt="op_img"] {
    max-width: 60%;
    height: auto;
    margin: 10px;
    align-self: center;
}
.line  {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0; 
}

.collapsible {
    
}

.title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
 
}

.title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #004085;
}

.toggle-btn {
    font-size: 2em;
    cursor: pointer; /* Changes the cursor to a hand when hovering over the button */
}

.content {
 margin-top: 10px;
}
