/* Carasoul Image Styling */
.stay-image {
    height: 300px; /* Set the desired height */
    object-fit: cover; /* Crop images to fill without distortion */
    border-radius: 10px; /* Optional: rounded corners */
}
.card h2 {
    font-size: 25px;
    font-weight: bold;
    color: #333;
}

.card p {
    font-size: 15px;
}

.card .row .col-3 p {
    font-weight: bold;
    color: #555;
}

.card .row .col-3 i {
    margin-bottom: 5px;
    color: #dedede;
}
.col-4 i{
    margin-bottom: 5px;
    color: #dedede;
}
.col-2 i{
    margin-bottom: 5px;
    color: #dedede;
}
/* PackageBox Styling */
.package-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.package-box {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.15);
}

.package-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: 5px;
}

.package-name {
    text-transform: uppercase;
}

.package-price {
    border: 1px solid black;
    font-weight: bold;
    border-radius: 10px;
    width: 5rem;
}

.divider {
    border: 1px solid black;
    margin: 10px 0;
}

.package-details {
    font-size: 14px;
    color: #333;
}

ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0; /* Removes extra spacing */
    margin: 0; /* Adjusts spacing */
}

.custom-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

.custom-list li {
    display: flex;
    align-items: center; /* Align bullet and text properly */
}

.custom-list li::before {
    content: "➤"; /* Custom bullet */
    color: #F28E3F; /* Warm Orange */
    font-weight: bold;
    font-size: 1.2em; /* Adjust size if needed */
    margin-right: 12px; /* Adjust space between bullet and text */
}
