.adventure-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    border-bottom: 2px solid #567b68;
}

.adventure-tabs button {
    padding: 10px 15px;
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
    border-bottom: none;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
    text-align: center;
    box-sizing: border-box;
    border-radius: 5px 5px 0 0;
}

.adventure-tabs button:hover {
    background-color: #e1e1e1;
    color: #567b68;
}

.adventure-tabs button.active {
    background-color: #567b68;
    color: #ffdd93;
    border-bottom: 2px;
    font-weight: bold;
}

.tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.tabcontent.active {
    display: block;
}

.adventure-content .tabcontent h2 {
    font-size: 28px; /* Adjust this value as needed */
    padding-bottom: 20px;
}

.adventure-content h1 {
    font-size: 34px; /* Adjust this value as needed */
}

@media (max-width: 768px) {
    .adventure-tabs {
        flex-direction: column;
    }

    .adventure-tabs button {
        margin-bottom: 5px;
        width: 100%;
    }
}

/* Grid structure for Rates & Info in a single column */
.rates-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.rates-info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.value {
    color: #666;
}

/* Specific styling for Pricing section */
.rates-info-row .value {
    font-size: 1em;
    line-height: 1.5;
}

/* For lists within the Dress Code or similar sections */
.value ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

/* Enhancing readability with some padding */
.value p {
    margin: 0;
    padding: 5px 0;
}

/* Optional: Add some spacing between the tab content and the tabs */
.tabcontent {
    margin-top: 15px;
}

/* Styling for tabs to be consistent with the content */
.tabcontent #RatesInfo {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Adjust text color and size for readability */
.tabcontent .label,
.tabcontent .value {
    font-size: 16px;
    color: #333;
}

/* Ensure the content is responsive */
@media (max-width: 768px) {
    .rates-info-grid {
        grid-template-columns: 1fr;
    }

    .label {
        font-size: 14px;
    }

    .value {
        font-size: 14px;
    }
}