.tour-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-info {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 5rem 1rem 5rem;
    box-sizing: border-box;
}

.page-info .info-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.page-info .h-500 {
    height: 500px;
}


.extras {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extras .title {
    font-size: 1.5rem;
    font-weight: bold;
}

.book-tour-btn {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    color: white;
    background-color: blue;
}

.book-tour-btn a {
    text-decoration: none;
    color: inherit;
}

.footer {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-sizing: border-box;
}

.footer .contact-info,
.footer .social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media only screen and (max-device-width: 1024px) {

    .tour-title {
        padding: 1rem;
        box-sizing: border-box;
    }

    .page-info {
        flex-direction: column;
        padding: 1rem
    }

    .book-tour-btn {
        font-size: 1rem;
    }

}