.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #ccc;
}

.tab-btn {
    flex: 1;
    padding: 14px 20px;
    cursor: pointer;
    background: #f5f5f5;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
    border-right: 1px solid #ccc;
    color: #1e1e1e;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn.active {
    background: #0224c4;
    color: white;
}

.tab-content {
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
}

.tab-content.hidden {
    display: none;
}

/* Accordion styles */
.accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.accordion-item {
    border-bottom: 1px solid #eaeaea;
}

.accordion-header {
    background-color: #fff;
    color: #d82f90;
    padding: 18px 20px;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 900;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #fce8f2;
}

.accordion-header::after {
    content: "▾";
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: "▴";
}

.accordion-body {
    display: none;
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    animation: fadeIn 0.3s ease-in-out;
}

.accordion-body.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion img.img-fluid {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 100%;
}
/* End */

.card-header {
    background: #f5f5f5;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header:hover {
    background-color: #e0e0e0;
}

.card-body {
    display: none;
    padding: 15px 20px;
    background-color: #fff;
}

.card-header.active + .card-body {
    display: block;
}

.card-header .arrow {
    transition: transform 0.3s;
}

.card-header.active .arrow {
    transform: rotate(180deg);
}

.travel-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: #333;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.travel-mode {
    margin-bottom: 20px;
}

.travel-mode h4 {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.travel-mode i {
    color: #d82f90;
}

.closing-line {
    font-size: 1rem;
    color: #333;
    margin-top: 30px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.accordion-link {
    word-break: break-all;
    overflow-wrap: break-word;
}